]> git.buserror.net Git - polintos/scott/priv.git/blob - std/string.h
minor doc updates
[polintos/scott/priv.git] / std / string.h
1 #ifndef _C_STRING_H
2 #define _C_STRING_H
3
4 #include <stddef.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 int memcmp(const void *b1, const void *b2, size_t len);
11 size_t strlen(const char *s);
12
13 #ifdef __cplusplus
14 }
15 #endif
16
17 #endif