| 13 | namespace Platform { |
| 14 | |
| 15 | int stricmp(const char *__s1, const char *__s2) { |
| 16 | #if (_MSC_VER) |
| 17 | return _stricmp(__s1, __s2); |
| 18 | #else |
| 19 | return strcasecmp(__s1, __s2); |
| 20 | #endif |
| 21 | } |
| 22 | |
| 23 | int strnicmp(const char *__s1, const char *__s2, size_t __n) { |
| 24 | #if (_MSC_VER) |
no outgoing calls
no test coverage detected