stdio.h: implement fprintf()
[neatlibc.git] / string.h
blob2bd80f8e6775c52daae3eaccbd75a8c2f68f3133
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);