8164
|
1
|
|
2 /// A simple parser with per-entry settings.
|
|
3
|
|
4 typedef struct m_entry_st {
|
|
5 char* name; // Filename, url or whatever
|
|
6 char** opts; // NULL terminated list of name,val pairs
|
|
7 } m_entry_t;
|
|
8
|
|
9 // Free a list returned by m_config_parse_command_line
|
|
10 void
|
|
11 m_entry_list_free(m_entry_t* lst);
|
|
12 // Use this when you switch to another entry
|
|
13 int
|
|
14 m_entry_set_options(m_config_t *config, m_entry_t* entry);
|
|
15
|
|
16 m_entry_t*
|
|
17 m_config_parse_me_command_line(m_config_t *config, int argc, char **argv);
|
|
18
|