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