- Timestamp:
- 05/25/07 10:51:17 (5 years ago)
- File:
-
- 1 edited
-
trunk/src/ifd/conf.c (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ifd/conf.c
r774 r946 92 92 * Parse list of statements 93 93 */ 94 int conf_parse_group(ifd_conf_node_t * group, char closing)94 static int conf_parse_group(ifd_conf_node_t * group, char closing) 95 95 { 96 96 ifd_conf_node_t *node; … … 173 173 * Debugging - dump the config tree 174 174 */ 175 void conf_dump(ifd_conf_node_t * node, int indent)175 static void conf_dump(ifd_conf_node_t * node, int indent) 176 176 { 177 177 for (; node; node = node->next) { … … 196 196 * Config node handling 197 197 */ 198 ifd_conf_node_t *conf_add_node(ifd_conf_node_t * parent, const char *name)198 static ifd_conf_node_t *conf_add_node(ifd_conf_node_t * parent, const char *name) 199 199 { 200 200 ifd_conf_node_t **p, *node; … … 280 280 return -1; 281 281 282 *result = strtoul(node->value, 0, 0);282 *result = strtoul(node->value, NULL, 0); 283 283 return 0; 284 284 } … … 347 347 * Tokenizer 348 348 */ 349 int get_token(char **tok)349 static int get_token(char **tok) 350 350 { 351 351 static char buffer[512]; … … 399 399 * Check if we're at the end of the file 400 400 */ 401 int ateof(void)401 static int ateof(void) 402 402 { 403 403 int retry = 1; … … 426 426 * Eat initial white space from buffer 427 427 */ 428 int skipws(void)428 static int skipws(void) 429 429 { 430 430 unsigned int m, n, in_comment = 0;
Note: See TracChangeset
for help on using the changeset viewer.
