1 #ifndef AMIGA_LIBC_STRING_H_
2 #define AMIGA_LIBC_STRING_H_
6 void memset(void *dest, int c, size_t n);
7 void *memcpy(void *dest, const void *src, size_t n);
8 void *memmove(void *dest, const void *src, size_t n);
10 size_t strlen(const char *s);
12 char *strchr(const char *s, int c);
13 char *strrchr(const char *s, int c);
15 char *strstr(const char *str, const char *substr);
17 int strcmp(const char *s1, const char *s2);
18 int strcasecmp(const char *s1, const char *s2);
20 #endif /* AMIGA_LIBC_STRING_H_ */