case */
| 1643 | |
| 1644 | /* case */ |
| 1645 | int str_comp_nocase(const char *a, const char *b) |
| 1646 | { |
| 1647 | #if defined(CONF_FAMILY_WINDOWS) |
| 1648 | return _stricmp(a,b); |
| 1649 | #else |
| 1650 | return strcasecmp(a,b); |
| 1651 | #endif |
| 1652 | } |
| 1653 | |
| 1654 | int str_comp_nocase_num(const char *a, const char *b, const int num) |
| 1655 | { |
nothing calls this directly
no outgoing calls
no test coverage detected