MCPcopy Create free account
hub / github.com/Kitware/CMake / testString

Function testString

Source/kwsys/testString.c:110–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110int testString(int argc, char* argv[])
111{
112 int result = 0;
113 (void)argc;
114 (void)argv;
115 setlocale(LC_CTYPE, "");
116
117 result |= testString_isalnum();
118 result |= testString_isalpha();
119 result |= testString_isascii();
120 result |= testString_isblank();
121 result |= testString_iscntrl();
122 result |= testString_isdigit();
123 result |= testString_isgraph();
124 result |= testString_islower();
125 result |= testString_isprint();
126 result |= testString_ispunct();
127 result |= testString_isspace();
128 result |= testString_isupper();
129 result |= testString_isxdigit();
130 result |= testString_tolower();
131 result |= testString_toupper();
132
133 return result;
134}

Callers

nothing calls this directly

Calls 2

testString_tolowerFunction · 0.85
testString_toupperFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…