blob: ea890cfd79c4829c4392424321b805756ef94cd8 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001#if !defined(__STRINGS_H)
2#define __STRINGS_H
3
4#include <compiler.h>
5
6__BEGIN_CDECLS;
7
8int strcasecmp(const char *s1, const char *s2);
9
10__END_CDECLS;
11
12#endif /* !__STRINGS_H */