File: parse_rc.h

package info (click to toggle)
oroborus 1.14.0-8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,064 kB
  • ctags: 468
  • sloc: ansic: 3,250; sh: 127; makefile: 84
file content (20 lines) | stat: -rw-r--r-- 441 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/***********************************/ 
/* oroborus (c) Ken Lynch Jan 2001 */ 
/* Distributed under the GPL       */ 
/* See LICENSE for more details    */ 
/***********************************/ 
 
#ifndef PARSE_RC_H 
#define PARSE_RC_H 
 
/* Config option structure */ 
typedef struct 
{ 
  char *option, *value; 
} RcStruct; 
 
/* parse_rc.c */ 
extern void free_rc(RcStruct *); 
extern int parse_rc(char *, char *, RcStruct *); 
 
#endif