Append to "*dest" the "len" bytes starting from "*src".
| 131 | |
| 132 | // Append to "*dest" the "len" bytes starting from "*src". |
| 133 | inline static void AppendBytes(string* dest, const char* src, size_t len) { |
| 134 | dest->append(src, len); |
| 135 | } |
| 136 | |
| 137 | inline bool IsSpecialByte(char c) { |
| 138 | return (static_cast<unsigned char>(c + 1)) < 2; |
no test coverage detected