| 50 | // cross-platform implementations |
| 51 | |
| 52 | int32_t strcmp(const char* str1, const char* str2) |
| 53 | { |
| 54 | return ::strcmp(str1, str2); |
| 55 | } |
| 56 | |
| 57 | int32_t strncmp(const char* str1, const char* str2, size_t count) |
| 58 | { |
no outgoing calls
no test coverage detected