MCPcopy Create free account
hub / github.com/Shannon-Data/ShannonBase / native_strcasecmp

Function native_strcasecmp

include/m_string.h:207–213  ·  view source on GitHub ↗

native_ rather than my_ since my_strcasecmp already exists */

Source from the content-addressed store, hash-verified

205
206/* native_ rather than my_ since my_strcasecmp already exists */
207static inline int native_strcasecmp(const char *s1, const char *s2) {
208#if defined _WIN32
209 return _stricmp(s1, s2);
210#else
211 return strcasecmp(s1, s2);
212#endif
213}
214
215/* native_ rather than my_ for consistency with native_strcasecmp */
216static inline int native_strncasecmp(const char *s1, const char *s2, size_t n) {

Callers 15

handle_optionsFunction · 0.85
get_one_optionFunction · 0.85
log_syslog_find_facilityFunction · 0.85
sysvar_install_pidFunction · 0.85
log_vmessageFunction · 0.85
is_sqlMethod · 0.85
is_javascriptMethod · 0.85
mysql_symbol_to_errnoFunction · 0.85
ip_to_hostnameFunction · 0.85
my_find_member_ncaseMethod · 0.85

Calls

no outgoing calls

Tested by 7

parse_actionFunction · 0.68
mainFunction · 0.68
evaluateMethod · 0.68
tableExistsMethod · 0.68
isVerifyMethod · 0.68
findTestMethod · 0.68
printTestCaseSummaryMethod · 0.68