18 lines
312 B
C
18 lines
312 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "ft_ping.h"
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
t_ping_config config;
|
|
int ret;
|
|
|
|
ret = cli_parse_arguments(argc, argv, &config);
|
|
if (ret != 0)
|
|
return (ret < 0) ? EXIT_FAILURE : EXIT_SUCCESS;
|
|
|
|
printf("PING: Not yet implemented\n");
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|