| 40 | #define MSG_CMD_FAIL "Command \"%s\" failed.\n" |
| 41 | |
| 42 | static int |
| 43 | is_comment(char *in) |
| 44 | { |
| 45 | if ((strlen(in) && index("!#%;", in[0])) || |
| 46 | (strncmp(in, "//", 2) == 0) || |
| 47 | (strncmp(in, "--", 2) == 0)) |
| 48 | return 1; |
| 49 | |
| 50 | return 0; |
| 51 | } |
| 52 | |
| 53 | static const char cmd_mempool_help[] = |
| 54 | "mempool <mempool_name>\n" |
no test coverage detected