MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / isSpace

Function isSpace

Source/3rdParty/bx/src/string.cpp:18–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16 }
17
18 bool isSpace(char _ch)
19 {
20 return ' ' == _ch // Space.
21 || '\t' == _ch // Horizontal tab.
22 || '\n' == _ch // Line feed / new line.
23 || '\r' == _ch // Carriage return.
24 || '\v' == _ch // Vertical tab.
25 || '\f' == _ch // Form feed / new page.
26 ;
27 }
28
29 bool isUpper(char _ch)
30 {

Callers 5

parserFunction · 0.70
strLTrimSpaceFunction · 0.70
strLTrimNonSpaceFunction · 0.70
strRTrimSpaceFunction · 0.70
tokenizeCommandLineFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected