2019-08-19 11:26:03 +08:00

15 lines
201 B
C

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