c-md/includes/cli.h
2026-01-12 00:48:09 +01:00

21 lines
301 B
C

#ifndef CLI_H
# define CLI_H
# include <stdint.h>
typedef struct s_args
{
const char *ext;
const char *input;
const char *output;
const char *map_path;
uint8_t show_help;
} t_args;
int8_t
cli_parse(t_args *args, int32_t argc, char **argv);
void
cli_print_help(const char *progname);
#endif