Made on Kubuntu
#include "typedefs.h"
Go to the source code of this file.
Functions | |
bool | INISetComment (const char comment_char) |
bool | INISetSeparator (const char sep) |
Sets name=value separator character. |
bool INISetComment | ( | const char | comment_char | ) |
Sets comment character Default comment character is ';'. This function changes it to given character. Comment cannot be set space, tab, carriage return, line feed, '[', ']', null character or name=value separator (which is '=' by default).
comment_char | New comment character. |
Definition at line 19 of file globals.cpp.
bool INISetSeparator | ( | const char | sep | ) |
Sets name=value separator character.
Default separator character is '='. This function changes it to given character. Separator cannot be set space, tab, carriage return, line feed, '[', ']', null character or comment character (which is ';' by default).
comment_char | New separator character. |
Definition at line 46 of file globals.cpp.