native_ rather than my_ since my_strcasecmp already exists */
| 205 | |
| 206 | /* native_ rather than my_ since my_strcasecmp already exists */ |
| 207 | static inline int native_strcasecmp(const char *s1, const char *s2) { |
| 208 | #if defined _WIN32 |
| 209 | return _stricmp(s1, s2); |
| 210 | #else |
| 211 | return strcasecmp(s1, s2); |
| 212 | #endif |
| 213 | } |
| 214 | |
| 215 | /* native_ rather than my_ for consistency with native_strcasecmp */ |
| 216 | static inline int native_strncasecmp(const char *s1, const char *s2, size_t n) { |
no outgoing calls