comparison parser-mecmd.h @ 8164:487cfc28525d

New config system + cleanup of header inter dependency
author albeu
date Tue, 12 Nov 2002 01:56:42 +0000
parents
children 1a14fde7680d
comparison
equal deleted inserted replaced
8163:51e5033ee687 8164:487cfc28525d
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