summaryrefslogtreecommitdiffstats
path: root/lib/inifile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixed comment typonarroo2014-02-171-1/+1
|
* Fixed Comment Typo.narroo2014-02-171-1/+1
|
* Fixed the tab spacing.narroo2014-02-171-22/+22
|
* Fixed Tab spacing of cases.narroo2014-02-171-10/+10
|
* Reworked RemoveBom to use unsigned chars and reverted the logic changes in WriteFile. Should work fine now.narroo2014-02-161-82/+96
|
* Changed unsigned char[] back to char[].narroo2014-02-161-1/+1
|
* Changed char[] to unsigned char[] in cIniFile::RemoveBomnarroo2014-02-161-1/+1
|
* Addressed Issue #402. cIniFile can now process UTF-8 files that have anarroo2014-02-162-67/+91
| | | | Byte Order Marker, BOM.
* Another VarArgs fix.madmaxoft2014-01-161-4/+2
| | | | This time using va_copy() on platforms that have it and simple assignment on platforms that don't.
* Using a 2nd argument instead of va_copy().madmaxoft2014-01-151-2/+4
| | | | This seems to be the only reasonable C++03-only solution.
* Fixed reading the files.madmaxoft2014-01-111-1/+1
| | | | Duplicate values were ignored.
* IniFile: Split SetValue() into AddValue() and SetValue().madmaxoft2014-01-112-39/+76
| | | | Each function does what one would assume - AddValue adds a new value, SetValue overwrites existing value (creates a new one if not exists, if instructed to do so).
* Fixed cIniFile's SetValue().madmaxoft2014-01-101-9/+1
| | | | How did we not see this earlier? Each call to SetValue would actually ADD a value!
* started work on cmakeTycho Bickerstaff2013-12-101-0/+7
|
* Moved iniFileAlexander Harkness2013-11-242-0/+1012