11 lines
226 B
C
11 lines
226 B
C
#ifndef PING_CLI_H
|
|
#define PING_CLI_H
|
|
|
|
#include <cli.h>
|
|
#include "ping/ping.h"
|
|
|
|
enum cli_code cli_parse_arguments(int argc, char **argv,
|
|
struct ping_config *config);
|
|
void cli_config_free(struct ping_config *config);
|
|
|
|
#endif
|