| 210 | // the terminal zero byte of the underlying character array). |
| 211 | template <size_t N> |
| 212 | string ByteSequence(const char (&arr)[N]) { |
| 213 | return string(arr, N - 1); |
| 214 | } |
| 215 | |
| 216 | TEST(OrderedCode, SkipToNextSpecialByte) { |
| 217 | for (size_t len = 0; len < 256; len++) { |