mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-08-31 16:57:46 +00:00
[common] add comment support to the ini parser
This commit is contained in:
parent
1aadf91901
commit
6aeafc6651
2 changed files with 13 additions and 1 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
B1-84-g7de030bb69+1
|
||||
B1-85-g1aadf91901+1
|
|
@ -367,6 +367,7 @@ bool option_load(const char * filename)
|
|||
int lineno = 1;
|
||||
char * module = NULL;
|
||||
bool line = true;
|
||||
bool comment = false;
|
||||
bool expectLine = false;
|
||||
bool expectValue = false;
|
||||
char * name = NULL;
|
||||
|
@ -379,6 +380,9 @@ bool option_load(const char * filename)
|
|||
|
||||
for(int c = fgetc(fp); !feof(fp); c = fgetc(fp))
|
||||
{
|
||||
if (comment && c != '\n')
|
||||
continue;
|
||||
|
||||
switch(c)
|
||||
{
|
||||
case '[':
|
||||
|
@ -477,6 +481,14 @@ bool option_load(const char * filename)
|
|||
(*p)[(*len)++] = c;
|
||||
break;
|
||||
|
||||
case ';':
|
||||
if (line)
|
||||
{
|
||||
comment = true;
|
||||
break;
|
||||
}
|
||||
// fallthrough
|
||||
|
||||
default:
|
||||
if (expectLine)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue