00001
00041 #ifndef STRING_H_INCLUDED
00042 #define STRING_H_INCLUDED
00043
00044 #include <types.h>
00045
00046 unsigned long strtoul(const char *s, char **endptr, int base);
00047 long strtol(const char *s, char **endptr, int base);
00048
00059 void *memcpy(void *dest, const void *src, size_t n);
00060
00072 void *memset(void *s, int c, size_t n);
00073
00086 void *memchr(const void *s, int c, size_t n);
00087
00097 int strcmp(const char *s1, const char *s2);
00098
00106 size_t strlen(const char *s);
00107
00117 char *strchr(const char *s, int c);
00118
00119 #endif