From 92f61058d5fdc38358b7bd0a7bc89a1ed5420d12 Mon Sep 17 00:00:00 2001 From: Raphael Date: Sat, 28 Mar 2026 15:39:00 +0100 Subject: [PATCH] feat(sources): adding ping.c --- sources/ping.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 sources/ping.c diff --git a/sources/ping.c b/sources/ping.c new file mode 100644 index 0000000..703f1a7 --- /dev/null +++ b/sources/ping.c @@ -0,0 +1,23 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ping.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rparodi +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2026/03/23 14:49:14 by rparodi #+# #+# */ +/* Updated: 2026/03/28 12:45:52 by rparodi ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "ping.h" +#include "struct.h" +#include +#include + +int main(int argc, char *argv[]) { + t_flags flags; + bzero(&flags, sizeof(t_flags)); + parsing_args(argc, argv, &flags); + return (EXIT_SUCCESS); +}