Dillo v3.1.1-46-g8a360e32
Loading...
Searching...
No Matches
prefsparser.hh
Go to the documentation of this file.
1/*
2 * Preferences parser
3 *
4 * Copyright (C) 2006-2009 Jorge Arellano Cid <jcid@dillo.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 */
11
12#ifndef __PREFS_HH__
13#define __PREFS_HH__
14
15#ifdef __cplusplus
16class PrefsParser {
17public:
18 static int parseLine(char *line, char *name, char *value);
19 static void parse(FILE *fp);
20};
21#endif /* __cplusplus */
22
23#endif /* __PREFS_HH__ */