| 1652 | } |
| 1653 | |
| 1654 | int str_comp_nocase_num(const char *a, const char *b, const int num) |
| 1655 | { |
| 1656 | #if defined(CONF_FAMILY_WINDOWS) |
| 1657 | return _strnicmp(a, b, num); |
| 1658 | #else |
| 1659 | return strncasecmp(a, b, num); |
| 1660 | #endif |
| 1661 | } |
| 1662 | |
| 1663 | int str_comp(const char *a, const char *b) |
| 1664 | { |
nothing calls this directly
no outgoing calls
no test coverage detected