Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
85
int kwsysString_isspace(char c)
86
{
87
unsigned char const uc = (unsigned char)c;
88
return uc < 0x80 && isspace(uc);
89
}
90
91
int kwsysString_isupper(char c)
92
{
Callers
4
CapitalizedWords
Method · 0.85
UnCapitalizedWords
Method · 0.85
AddSpaceBetweenCapitalizedWords
Method · 0.85
kwsysSystem__ParseUnixCommand
Function · 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…