| 75 | } |
| 76 | |
| 77 | string getMessage(int n) |
| 78 | { |
| 79 | char buffer[256]; |
| 80 | static const SafeArg dummy; |
| 81 | |
| 82 | fb_msg_format(0, SVCMGR_FACILITY, n, sizeof(buffer), buffer, dummy); |
| 83 | |
| 84 | return string(buffer); |
| 85 | } |
| 86 | |
| 87 | string prepareSwitch(const char* arg) |
| 88 | { |
no test coverage detected