e1a11825fcae567e7e263fe2806c212a2f7617ac
[retrocrawl] / src / amiga / libc / string.h
1 #ifndef AMIGA_LIBC_STRING_H_
2 #define AMIGA_LIBC_STRING_H_
3
4 #include <stdlib.h>
5
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);
9
10 size_t strlen(const char *s);
11
12 char *strchr(const char *s, int c);
13 char *strrchr(const char *s, int c);
14
15 char *strstr(const char *str, const char *substr);
16
17 int strcmp(const char *s1, const char *s2);
18 int strcasecmp(const char *s1, const char *s2);
19
20 #endif  /* AMIGA_LIBC_STRING_H_ */