Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Tripwire/tripwire-open-source
/ util_IsOctal
Function
util_IsOctal
src/twparser/parserhelper.cpp:957–962 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
955
}
956
957
bool util_IsOctal(const char ch)
958
{
959
ASSERT(util_AsciiCharsActLikeTheyShould());
960
961
return (ch >=
'0'
&& ch <=
'7'
);
962
}
963
964
int util_GetEscapeValueOfChar(char ch)
965
{
Callers
2
InterpretEscapedString
Method · 0.85
util_ConvertOctal
Function · 0.85
Calls
1
util_AsciiCharsActLikeTheyShould
Function · 0.85
Tested by
no test coverage detected