13 lines
176 B
C
13 lines
176 B
C
#if !defined(__STRINGS_H)
|
|
#define __STRINGS_H
|
|
|
|
#include <compiler.h>
|
|
|
|
__BEGIN_CDECLS
|
|
|
|
int strcasecmp(const char *s1, const char *s2);
|
|
|
|
__END_CDECLS
|
|
|
|
#endif /* !__STRINGS_H */
|