Files
ft_ping/includes/opt_parse.h
2025-08-11 20:26:21 +02:00

14 lines
221 B
C

#pragma once
#include <stdbool.h>
typedef struct {
bool verbose;
} args_t;
/**
* @brief Can be used to parse the command line options
* @param av The argv of the program
*/
int opt_parse(char **av, args_t *args);