extensive header cleanup for standards conformance & correctness
[musl] / include / strings.h
1 #ifndef _STRINGS_H
2 #define _STRINGS_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8
9 #define __NEED_size_t
10 #include <bits/alltypes.h>
11
12
13 int bcmp (const void *, const void *, size_t);
14 void bcopy (const void *, void *, size_t);
15 void bzero (void *, size_t);
16
17 int ffs (int);
18
19 char *index (const char *, int);
20 char *rindex (const char *, int);
21
22 int strcasecmp (const char *, const char *);
23 int strncasecmp (const char *, const char *, size_t);
24
25 #ifdef __cplusplus
26 }
27 #endif
28
29 #endif