#ifndef _LIBC_STRINGS_H #define _LIBC_STRINGS_H #include #ifdef __cplusplus extern "C" { #endif int strcasecmp(const char *s1, const char *s2); int strncasecmp(const char *s1, const char *s2, size_t n); #ifdef __cplusplus } #endif #endif /* _LIBC_STRINGS_H */