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

Function kwsysString_isspace

Source/kwsys/String.c:85–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85int kwsysString_isspace(char c)
86{
87 unsigned char const uc = (unsigned char)c;
88 return uc < 0x80 && isspace(uc);
89}
90
91int kwsysString_isupper(char c)
92{

Callers 4

CapitalizedWordsMethod · 0.85
UnCapitalizedWordsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…