blob: cd8743c4d4d000cd2de4621d72f4891f41e30d42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __STRINGS_H
#define __STRINGS_H
typedef __SIZE_TYPE__ size_t;
int ffs(int);
int ffsl(long);
int ffsll(long long);
int strcasecmp(const char *, const char *);
// int strcasecmp_l(const char *, const char *, locale_t);
int strncasecmp(const char *, const char *, size_t);
// int strncasecmp_l(const char *, const char *, size_t, locale_t);
#endif
|