LFX Mentorship 2023
handler.h
Go to the documentation of this file.
1 #ifndef HANDLER_H
4 #define HANDLER_H
5 
6 #include "argparse.h"
7 #include "option.h"
8 
9 bool handle_option_null(const Option *opt);
10 
11 bool handle_option_version(const Option *opt);
12 
13 bool handle_option_wasm_arg(const Option *opt);
14 
18 bool handle_option(const ParseData *pd);
19 
20 #endif /* HANDLER_H */
Provides stuff for argument parsing and return raw parsing result.
bool handle_option(const ParseData *pd)
Handle parsing result from ParseData.
Basic functions for Option operation.
Option Struct.
Definition: option.h:14
ParseData Struct.
Definition: argparse.h:13