blob: 4e60f13bc70188cd1894b95e5c9dccd98d1f3765 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* @file parse.h
* @author Joe Wingbermuehle
* @date 2004-2006
*
* @brief Header file for the JWM configuration parser.
*
*/
#ifndef PARSE_H
#define PARSE_H
/** Parse a configuration file.
* @param fileName The file to parse.
*/
void ParseConfig(const char *fileName);
#endif
|