strcpy
[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 char *strcpy(char *dest, const char *src);
11
12 size_t strlen(const char *s);
13
14 char *strchr(const char *s, int c);
15 char *strrchr(const char *s, int c);
16
17 char *strstr(const char *str, const char *substr);
18
19 int strcmp(const char *s1, const char *s2);
20 int strcasecmp(const char *s1, const char *s2);
21
22 #endif  /* AMIGA_LIBC_STRING_H_ */