| 190:90bf9049e5eb | 191:2e6cbacafdc7 |
|---|---|
| 73 return buffer; | 73 return buffer; |
| 74 } | 74 } |
| 75 } | 75 } |
| 76 } | 76 } |
| 77 | 77 |
| 78 std::string quote(const ByteArray &bytes) | 78 std::string quote(const std::vector<unsigned char> &bytes) |
| 79 { | 79 { |
| 80 std::string result; | 80 std::string result; |
| 81 | 81 |
| 82 for (unsigned char byte : bytes) | 82 for (unsigned char byte : bytes) |
| 83 result += representByte(byte); | 83 result += representByte(byte); |