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

Function str_comp_nocase_num

server/src/system.c:1654–1661  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1652}
1653
1654int 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
1663int str_comp(const char *a, const char *b)
1664{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected