| 203 | |
| 204 | #if SRP_DEBUG > 0 |
| 205 | void dumpIt(const char* name, const Firebird::UCharBuffer& data) |
| 206 | { |
| 207 | fprintf(stderr, "%s\n", name); |
| 208 | for (size_t x = 0; x<data.getCount(); ++x) |
| 209 | fprintf(stderr, "%02x ", data[x]); |
| 210 | fprintf(stderr, "\n"); |
| 211 | } |
| 212 | |
| 213 | void dumpIt(const char* name, const Firebird::string& str) |
| 214 | { |
no test coverage detected