🏗️」 wip: added the print message

This commit is contained in:
2025-08-11 20:26:21 +02:00
parent 9895a80833
commit 8f1abd7940
5 changed files with 58 additions and 14 deletions

View File

@ -1,11 +1,13 @@
#pragma once
typedef struct {
#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);
int opt_parse(char **av, args_t *args);