MCPcopy Create free account
hub / github.com/cppla/ServerStatus / str_comp_nocase

Function str_comp_nocase

server/src/system.c:1645–1652  ·  view source on GitHub ↗

case */

Source from the content-addressed store, hash-verified

1643
1644/* case */
1645int 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
1654int str_comp_nocase_num(const char *a, const char *b, const int num)
1655{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected