16 lines
284 B
C
16 lines
284 B
C
#ifndef PING_CLI_H
|
|
#define PING_CLI_H
|
|
|
|
#include "ft_ping.h"
|
|
|
|
enum e_cli_code {
|
|
CLI_EXIT_SUCCESS = -1,
|
|
CLI_SUCCESS = 0,
|
|
CLI_ERROR = 1
|
|
};
|
|
|
|
enum e_cli_code cli_parse_arguments(int argc, char **argv,
|
|
t_ping_config *config);
|
|
void cli_config_free(t_ping_config *config);
|
|
|
|
#endif
|