uKernel/include/string.h
Pierre Pronchery ad9d9babd1 Always expose <stddef.h> from <string.h>
This is closer to a typical userland's behaviour.
2018-03-21 02:59:34 +01:00

20 lines
424 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 <stddef.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);
void * memset(void * dest, int c, size_t n);
#endif /* !UKERNEL_STRING_H */