#ifndef TRACEROUTE_CLI_HANDLERS_H #define TRACEROUTE_CLI_HANDLERS_H #include "cli.h" extern const struct option_descriptor g_options[]; int cli_handle_help(const char *arg, void *config); int cli_handle_version(const char *arg, void *config); int cli_handle_verbose(const char *arg, void *config); int cli_handle_max_ttl(const char *arg, void *config); int cli_handle_waittime(const char *arg, void *config); #endif