MCPcopy Create free account
hub / github.com/cuberite/cuberite / containsControlCharacter

Function containsControlCharacter

lib/jsoncpp/src/lib_json/json_writer.cpp:21–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19}
20
21static bool containsControlCharacter( const char* str )
22{
23 while ( *str )
24 {
25 if ( isControlCharacter( *(str++) ) )
26 return true;
27 }
28 return false;
29}
30static void uintToString( unsigned int value,
31 char *&current )
32{

Callers 1

valueToQuotedStringFunction · 0.85

Calls 1

isControlCharacterFunction · 0.85

Tested by

no test coverage detected