We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6357fde commit 197ac23Copy full SHA for 197ac23
lib/c.h
@@ -29,6 +29,7 @@ int strncmp(char *s1, char *s2, int len);
29
char *strcpy(char *dest, char *src);
30
char *strncpy(char *dest, char *src, int len);
31
char *memcpy(char *dest, char *src, int count);
32
+int memcmp(void *s1, void *s2, int n);
33
void *memset(void *s, int c, int n);
34
35
/* formatted output string */
0 commit comments