12 lines
185 B
C
12 lines
185 B
C
#pragma once
|
|
|
|
typedef struct {
|
|
|
|
} 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);
|