| 162 | } |
| 163 | |
| 164 | void TestHexToString() |
| 165 | { |
| 166 | test_hex_to_string("0a", "\n"); |
| 167 | test_hex_to_string("0d", "\r"); |
| 168 | test_hex_to_string("0d0a", "\r\n"); |
| 169 | test_hex_to_string("610d0a62", "a\r\nb"); |
| 170 | } |
| 171 | |
| 172 | #if 0 |
| 173 | ////////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected