mirror of
				https://github.com/gnif/LookingGlass.git
				synced 2025-10-31 12:42:02 +00:00 
			
		
		
		
	[common] add comment support to the ini parser
This commit is contained in:
		| @@ -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) | ||||
|         { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Geoffrey McRae
					Geoffrey McRae