| 21 | } |
| 22 | |
| 23 | int strnicmp(const char *__s1, const char *__s2, size_t __n) { |
| 24 | #if (_MSC_VER) |
| 25 | return _strnicmp(__s1, __s2, __n); |
| 26 | #else |
| 27 | return strncasecmp(__s1, __s2, __n); |
| 28 | #endif |
| 29 | } |
| 30 | |
| 31 | void strerror(int __errnum, char *__buf, size_t __buflen) { |
| 32 | #if (_WIN32) |
no outgoing calls
no test coverage detected