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