init: parsing
This commit is contained in:
13
src/parsing.h
Normal file
13
src/parsing.h
Normal file
@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
typedef enum {
|
||||
OPTION,
|
||||
ARGUMENT,
|
||||
} e_type;
|
||||
|
||||
struct param {
|
||||
const char *name;
|
||||
const char *alias;
|
||||
e_type type;
|
||||
void *value;
|
||||
};
|
||||
Reference in New Issue
Block a user