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