Releases: benhoyt/inih
Releases · benhoyt/inih
inih version 48
Added meson.build
. Thanks @stephanlachnit.
inih version 47
inih version 46
Add INI_ALLOW_NO_VALUE
: by default, inih treats a name with no value (no =
or :
on the line) as an error. To allow names with no values, add -DINI_ALLOW_NO_VALUE=1
, and inih will call your handler function with value set to NULL. Thanks @weltling.
inih version 45
Ensure INI_CALL_HANDLER_ON_NEW_SECTION is always defined. Add copyright and SPDX-License fields to source files.
inih version 44
Add HasSection()
to C++ API. #81
inih version 43
inih version 42
Silence -Wstringop-truncation #64
inih version r41
Adds INI_START_COMMENT_PREFIXES
to allow changing start-of-line comment chars. Addresses #62.
inih version r40
inih version r39
Add compile-time flag INI_HANDLER_LINENO
to allow reporting current line number to handler callback (originated in #56).