1 #if !defined(__STRINGS_H)
2 #define __STRINGS_H
3 
4 #include <lk/compiler.h>
5 
6 __BEGIN_CDECLS;
7 
8 int strcasecmp(const char *s1, const char *s2);
9 
10 __END_CDECLS;
11 
12 #endif  /* !__STRINGS_H */
13