kern

annotate src/klibc/string.h @ 1:ebe5e0e44a9d

pretty much finished the code for article 1, might do minor adjustments though
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 02 Dec 2010 08:45:41 +0200
parents 662ff2170531
children 86781ef20689
rev   line source
nuclear@0 1 #ifndef STRING_H_
nuclear@0 2 #define STRING_H_
nuclear@0 3
nuclear@0 4 #include <stdlib.h>
nuclear@0 5
nuclear@1 6 void memset(void *s, int c, size_t n);
nuclear@1 7 void *memcpy(void *dest, const void *src, size_t n);
nuclear@1 8 void *memmove(void *dest, const void *src, size_t n);
nuclear@0 9
nuclear@0 10 #endif /* STRING_H_ */