mirror of
https://github.com/ShadowsocksR-Live/shadowsocksr-native.git
synced 2026-01-25 14:56:26 +00:00
15 lines
201 B
C
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 */
|