1
2
3
4
5
6
7
8
9
10
|
!ifndef _RSK_LIBCONFIG_H
!define _RSK_LIBCONFIG_H
__BLANK_LINE__
typedef enum {
LC_CONF_SECTION,
LC_CONF_APACHE,
LC_CONF_COLON,
LC_CONF_EQUAL,
|
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
!ifndef _RSK_LIBCONFIG_H
!define _RSK_LIBCONFIG_H
!ifdef __cplusplus
extern "C" {
!endif
__BLANK_LINE__
typedef enum {
LC_CONF_SECTION,
LC_CONF_APACHE,
LC_CONF_COLON,
LC_CONF_EQUAL,
|
75
76
77
78
79
80
81
82
83
|
!define LC_CBRET_ERROR (-1)
__BLANK_LINE__
extern int lc_optind;
__BLANK_LINE__
!endif
|
>
|
>
>
|
78
79
80
81
82
83
84
85
86
87
88
89
|
!define LC_CBRET_ERROR (-1)
__BLANK_LINE__
extern int lc_optind;
__BLANK_LINE__
!ifdef __cplusplus
}
!endif
!endif
|