| 216 | } |
| 217 | |
| 218 | void dumpBin(const char* name, const Firebird::string& str) |
| 219 | { |
| 220 | fprintf(stderr, "%s (%ld)\n", name, str.length()); |
| 221 | for (size_t x = 0; x < str.length(); ++x) |
| 222 | fprintf(stderr, "%02x ", str[x]); |
| 223 | fprintf(stderr, "\n"); |
| 224 | } |
| 225 | |
| 226 | void dumpIt(const char* name, const BigInteger& bi) |
| 227 | { |