Expose SkipToNextSpecialByte for testing purposes
| 154 | |
| 155 | // Expose SkipToNextSpecialByte for testing purposes |
| 156 | const char* OrderedCode::TEST_SkipToNextSpecialByte(const char* start, |
| 157 | const char* limit) { |
| 158 | return SkipToNextSpecialByte(start, limit); |
| 159 | } |
| 160 | |
| 161 | // Helper routine to encode "s" and append to "*dest", escaping special |
| 162 | // characters. |
nothing calls this directly
no test coverage detected