MCPcopy Create free account
hub / github.com/Haivision/srt / ShowChar

Function ShowChar

examples/sendmsg.cpp:20–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18using namespace std;
19
20string ShowChar(char in)
21{
22 if (in >= 32 && in < 127)
23 return string(1, in);
24
25 ostringstream os;
26 os << "<" << hex << uppercase << int(in) << ">";
27 return os.str();
28}
29
30int main(int argc, char* argv[])
31{

Callers

nothing calls this directly

Calls 1

strMethod · 0.45

Tested by

no test coverage detected