Merge changes to configfile.c from c-implementation
[browser-switch] / configfile.h
1 /*
2  * configfile.h -- definitions for config file parsing
3  *
4  * Copyright (C) 2009 Steven Luo
5  * Derived from a Python implementation by Jason Simpson and Steven Luo
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20  * USA.
21  */
22
23 #ifndef _CONFIGFILE_H
24 #define _CONFIGFILE_H
25
26 #include <stdio.h>
27
28 #define DEFAULT_HOMEDIR "/home/user"
29 #define CONFIGFILE_LOC "/.config/browser-switchboard"
30 #define CONFIGFILE_LOC_OLD "/.config/browser-proxy"
31
32 struct swb_config_line {
33         /* Whether or not the line has been parsed */
34         int parsed;
35         /* If parsed, the config key; otherwise, the entire line */
36         char *key;
37         /* If parsed, the config value */
38         char *value;
39 };
40
41 FILE *open_config_file(void);
42
43 int parse_config_file_begin(void);
44 void parse_config_file_end(void);
45 int parse_config_file_line(FILE *fp, struct swb_config_line *line);
46
47 #endif /* _CONFIGFILE_H */