Files
ft_ping/includes/opt_parse.h
2025-08-12 12:37:05 +02:00

19 lines
301 B
C

#pragma once
#include <help.h>
#include <stdint.h>
#include <stdbool.h>
typedef struct {
bool opts[OPT_NB];
char *arg[OPT_NB];
char **hosts;
} 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);