1. 88d3836 [inih] Change void* to FILE* by Leonard Chan · 11 months ago main master
  2. 1b9ee30 Merge pull request #12 from misson20000/file-constructor by Jan Tilly · 5 years ago
  3. 6ad9acf Merge pull request #13 from misson20000/no-using-std-string by Jan Tilly · 5 years ago
  4. 7bf1df9 remove 'using std::string' by misson20000 · 5 years ago
  5. 7c9e125 add INIReader(FILE*) constructor by misson20000 · 5 years ago
  6. f71cce3 Merge pull request #10 from kuznetsss/master by Jan Tilly · 5 years ago
  7. 7eac98e Fix usage example of README by Sergey Kuznetsov · 5 years ago
  8. b1ac974 Merge pull request #9 from aquaticus/feature/change-private-to-protected by Jan Tilly · 6 years ago
  9. 09eb32b Fixed access in class INIReader from private to protected. With private making any derived class makes no sense. by Michal Goralczyk · 6 years ago
  10. 53621f4 Merge pull request #8 from kuznetsss/master by Jan Tilly · 6 years ago
  11. a7c69c2 Make class methods const. by Sergey Kuznetsov · 6 years ago
  12. a3f04ad Merge pull request #6 from admiralakber/master by Jan Tilly · 6 years ago
  13. 02d41b3 Added an empty constructor to INIReader by Aqeel Akber · 6 years ago
  14. 8d93554 Merge pull request #5 from niconico/master by Jan Tilly · 7 years ago
  15. 2bb8d08 add const to ParseError by Nicolas Aunai · 7 years ago
  16. 54438c6 Merge pull request #3 from nabijaczleweli/master by Jan Tilly · 7 years ago
  17. 58409e2 Fix syntax highlighting in README by nabijaczleweli · 7 years ago
  18. a306893 Update README.md by Jan Tilly · 7 years ago
  19. 4cf1837 Merge pull request #2 from exante/master by Jan Tilly · 7 years ago
  20. 69a6309 Fix test building with old gcc versions by Evgeniy Alekseev · 7 years ago
  21. b4f3644 Simplify test by Evgeniy Alekseev · 7 years ago
  22. 003b6b7 Add Sections() method by Evgeniy Alekseev · 7 years ago
  23. d4d341c Update example with multi-line and inline comments. by Jan Tilly · 8 years ago
  24. 2358182 Merge pull request #1 from ajshephard/multi-line-comment by Jan Tilly · 8 years ago
  25. 9c6e827 allow inline comments on multiple lines when multi-line value parsing is enabled by Andrew Shephard · 8 years ago
  26. badcf3a Trigger travis build. by Jan Tilly · 8 years ago
  27. f79c299 Change formatting. by Jan Tilly · 8 years ago
  28. 637c1ef Remove trivial makefile. by Jan Tilly · 8 years ago
  29. 87cbf1b Change formatting. by Jan Tilly · 8 years ago
  30. 79365a5 Add travis badge. by Jan Tilly · 8 years ago
  31. c54f4f9 Add .travis.yml by Jan Tilly · 8 years ago
  32. eb9d6e9 Updated README. by Jan Tilly · 8 years ago
  33. fa58d45 Move all files to /inih. by Jan Tilly · 8 years ago
  34. 0753435 INIReader is now header only. by Jan Tilly · 8 years ago
  35. 65a38ce Simple C++ example without linking against library. by Jan Tilly · 8 years ago
  36. 4b10c65 Only define INI_INLINE_COMMENT_PREFIXES if it's not already defined by Ben Hoyt · 8 years ago
  37. 5e965dc Small tweak for inline comments by Ben Hoyt · 8 years ago
  38. 6d3ca54 Add docs for inline comment handling by Ben Hoyt · 8 years ago
  39. 441b65b Add option to disable inline comments and to specify which inline comment character are allowed: https://github.com/benhoyt/inih/issues/40 by Ben Hoyt · 8 years ago
  40. e5fbd01 Remove impossible code path by Ben Hoyt · 8 years ago
  41. 959ca9d Shrink variable name by Ben Hoyt · 8 years ago
  42. e6735ff Fix issue noted by @jgroffen where if both : and = were used on a line, = would take precedence ( https://github.com/benhoyt/inih/pull/44) by Ben Hoyt · 8 years ago
  43. e470b45 Merge pull request #41 from cosmy1/patch-1 by Ben Hoyt · 8 years ago
  44. 6fb1cb6 Fix MSVC Warning by cosmy1 · 8 years ago
  45. 5c93f2e Add note about ini_parse_file and ini_parse_stream, including example link by Ben Hoyt · 9 years ago
  46. a5896a4 Add ini_parse_stream() function for custom I/O, for example string I/O. by Ben Hoyt · 9 years ago
  47. c3458c9 Prevent silly strncpy security warning in MSVC. by Ben Hoyt · 9 years ago
  48. a67bf22 Add license and project link by Ben Hoyt · 9 years ago
  49. f8a5d9f Update project link by Ben Hoyt · 9 years ago
  50. a32adf2 Update project link by Ben Hoyt · 9 years ago
  51. 07bf617 Update project link by Ben Hoyt · 9 years ago
  52. 9b8c599 Update link to INIReader.h from Google Code to GitHub by Ben Hoyt · 9 years ago
  53. d694557 fix links, fix langs by Ben Hoyt · 9 years ago
  54. 74d2ca0 Brush Technology -> Ben Hoyt by Ben Hoyt · 9 years ago
  55. 4463718 Add "differences from ConfigParser" section by Ben Hoyt · 9 years ago
  56. 24705de Add "differences from ConfigParser by Ben Hoyt · 9 years ago
  57. d4c71b3 Delete README.txt by Ben Hoyt · 9 years ago
  58. 56aa2c2 Copy README.md from Google Code page by Ben Hoyt · 9 years ago
  59. 02f386a Issue 30: Change MakeKey separator from "." to "=" as section names/keys can contain dots (but not equals signs). by benhoyt@gmail.com · 10 years ago
  60. f2914d4 Add INI_STOP_ON_FIRST_ERROR per Robin Getz (defaults to off). by benhoyt@gmail.com · 10 years ago
  61. 111c3ec Added GetReal() to parse a floating point number (double) in C++ INIReader interface. by benhoyt@gmail.com · 11 years ago
  62. 9b0825f Fix issue 25: Be sure to call isspace() with unsigned char -- nasty things happen when char type is "signed char" like MSVC's default. by benhoyt@gmail.com · 11 years ago
  63. a2b505c Couple of tweaks to static lib makefile: by benhoyt@gmail.com · 12 years ago
  64. d28ba66 Fixed tabs from copy-n-paste. by benhoyt@gmail.com · 12 years ago
  65. e9bbe84 Commit lukas' version of Makefile for building inih as a static library (before I tweak it). by benhoyt@gmail.com · 12 years ago
  66. d91415a Per Ben Hiett, add support for heap (malloc) allocation for INI files with very long lines. by benhoyt@gmail.com · 12 years ago
  67. 4de5b3c Fixed issue 20: Replaced use of non-portable stricmp() in examples with strcmp(). by benhoyt@gmail.com · 12 years ago
  68. 23d6922 Fixed char/unsigned char issue with r20. Added unit test for BOM handling. by benhoyt@gmail.com · 12 years ago
  69. 0120f80 Allow UTF-8 BOM char sequence at start of file. by benhoyt@gmail.com · 12 years ago
  70. ff89443 Issue 18: Fixed multi-line handling in C++ wrapper, per jeffhawke77. by benhoyt · 12 years ago
  71. 0a54de5 Fixed issue 16: properly handle comments on multi-line values. by benhoyt · 12 years ago
  72. 40de3a7 Per issue 13, return error status from handler() in example. by benhoyt · 12 years ago
  73. 328c3d4 Issue 11: changed Subversion eol-style to native. by benhoyt@gmail.com · 13 years ago
  74. 2d41b09 Fixed issue 11: #include <stdio.h> in ini.h now that FILE is used in it. by benhoyt@gmail.com · 13 years ago
  75. b1170c9 Issue 7: Factored out ini_parse_file() so users can parse INI file with just a FILE* instead of a filename, and use fmemopen. by benhoyt@gmail.com · 13 years ago
  76. 9ec69b2 Added GetBoolean() to C++ API. by benhoyt@gmail.com · 13 years ago
  77. d83f6c3 Added kerrigan29a's patch to allow name:value style lines as per Python's ConfigParser. by benhoyt · 13 years ago
  78. ee0443f As per issue 4, document more explicitly that ini_parse() doesn't stop on first error. by benhoyt@gmail.com · 14 years ago
  79. d1939f4 Fix issue 5: by benhoyt@gmail.com · 14 years ago
  80. 232b1d0 Fixed Issue 3: INIReader::GetInteger() was buggy because the scope of the string Get() returned was too temporary for how I was using it's c_str(). Thanks, dreamer.dead for the bug report. by benhoyt · 15 years ago
  81. 37732b8 Added X-Macros example. Simplified INIReaderTest.cpp. by benhoyt · 15 years ago
  82. 4d08274 Moved examples to their own examples/ dir. by benhoyt · 15 years ago
  83. ff639be Committing simple config file example as per project home page. by benhoyt · 15 years ago
  84. 6aae105 First commit. Basically just committing what I published in the blog entry. by benhoyt · 15 years ago