kern

view src/klibc/string.h @ 21:3ba93d8f586c

now ignoring parts of the memory map beyond 4gb instead of silently wrapping around and marking all holes as usable :)
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 03 Apr 2011 08:23:07 +0300
parents 86781ef20689
children ebca81749ef5
line source
1 #ifndef STRING_H_
2 #define STRING_H_
4 #include <stdlib.h>
6 void memset(void *s, int c, size_t n);
7 void memset16(void *s, int c, size_t n);
9 void *memcpy(void *dest, const void *src, size_t n);
10 void *memmove(void *dest, const void *src, size_t n);
12 size_t strlen(const char *s);
14 char *strchr(const char *s, int c);
15 char *strrchr(const char *s, int c);
17 #endif /* STRING_H_ */