| 987 | return cli_impl_instance->json_argument_completion_generator(text, state); |
| 988 | } |
| 989 | extern "C" char** json_completion_function(const char* text, int start, int end) |
| 990 | { |
| 991 | return cli_impl_instance->json_completion(text, start, end); |
| 992 | } |
| 993 | extern "C" int control_c_handler(int count, int key) |
| 994 | { |
| 995 | std::cout << "\n\ncontrol-c!\n\n"; |
nothing calls this directly
no test coverage detected