89int ini_parse_file( FILE *file,
int ( *handler )(
void *,
const char *,
const char *,
const char * ),
void *user )
93 char line[INI_MAX_LINE];
97 char section[MAX_SECTION] =
"";
98 char prev_name[MAX_NAME] =
"";
108 line = (
char *)malloc( INI_MAX_LINE );
116 while( fgets( line, INI_MAX_LINE, file ) != NULL )
122 if( lineno == 1 && (
unsigned char)start[0] == 0xEF && (
unsigned char)start[1] == 0xBB &&
123 (
unsigned char)start[2] == 0xBF )
128 start = lskip( rstrip( start ) );
130 if( *start == INI_COMMENT_CHAR || *start ==
'#' )
134#if INI_ALLOW_MULTILINE
135 else if( *prev_name && *start && start > line )
139 if( !handler( user, section, prev_name, start ) && !error )
143 else if( *start ==
'[' )
146 end = find_char_or_comment( start + 1,
']' );
150 strncpy0( section, start + 1,
sizeof( section ) );
159 else if( *start && *start != INI_COMMENT_CHAR )
162 end = find_char_or_comment( start,
'=' );
165 end = find_char_or_comment( start,
':' );
167 if( *end ==
'=' || *end ==
':' )
170 name = rstrip( start );
171 value = lskip( end + 1 );
172 end = find_char_or_comment( value,
'\0' );
173 if( *end == INI_COMMENT_CHAR )
178 strncpy0( prev_name, name,
sizeof( prev_name ) );
179 if( !handler( user, section, name, value ) && !error )
189#if INI_STOP_ON_FIRST_ERROR
int ini_parse_file(FILE *file, int(*handler)(void *, const char *, const char *, const char *), void *user)
Parse ini file.
int ini_parse(const char *filename, int(*handler)(void *, const char *, const char *, const char *), void *user)
Parse given INI-style file.