uKernel/include/string.h

18 lines
358 B
C

/* $Id$ */
/* Copyright (c) 2018 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS uKernel */
#ifndef UKERNEL_STRING_H
# define UKERNEL_STRING_H
# include <stdint.h>
/* prototypes */
void * memcpy(void * dest, void const * src, size_t n);
void * memmove(void * dest, void const * src, size_t n);
#endif /* !UKERNEL_STRING_H */