linux/fb.h: added
[neatlibc.git] / string.h
blobc2e98457123c1e62cec33e2cdcde4ba694780a50
1 #include <stddef.h>
3 void *memcpy(void *dst, void *src, int n);
4 void *memmove(void *dst, void *src, int n);
5 void *memset(void *s, int v, int n);
6 void *memchr(void *s, int c, int n);
8 char *strcpy(char *dst, char *src);
9 char *strchr(char *s, int c);
10 int strlen(char *s);
11 int strcmp(char *s1, char *s2);
13 char *strncpy(char *d, char *s, int n);
14 char *strcat(char *d, char *s);
15 int strncmp(char *d, char *s, int n);
16 char *strstr(char *s, char *r);