| 31 | namespace fdb_cli { |
| 32 | |
| 33 | bool tokencmp(StringRef token, const char* command) { |
| 34 | if (token.size() != strlen(command)) |
| 35 | return false; |
| 36 | |
| 37 | return !memcmp(token.begin(), command, token.size()); |
| 38 | } |
| 39 | |
| 40 | void printUsage(StringRef command) { |
| 41 | const auto& helpMap = CommandFactory::commands(); |
no test coverage detected