stdio: puts() and vprintf()
[neatlibc.git] / string.h
blobf692b725cda77665626f3c805dea75e3a956f5f9
1 #include <stddef.h>
3 void *memcpy(void *dst, void *src, long n);
4 void *memmove(void *dst, void *src, long n);
5 void *memset(void *s, int v, long n);
6 void *memchr(void *s, int c, long n);
7 void *memrchr(void *s, int c, long n);
8 int memcmp(char *s1, char *s2, long n);
10 char *strcpy(char *dst, char *src);
11 char *strchr(char *s, int c);
12 char *strrchr(char *s, int c);
13 long strlen(char *s);
14 int strcmp(char *s1, char *s2);
16 char *strncpy(char *d, char *s, long n);
17 char *strcat(char *d, char *s);
18 int strncmp(char *d, char *s, long n);
19 char *strstr(char *s, char *r);