1. 11 3月, 2021 1 次提交
  2. 09 9月, 2020 1 次提交
  3. 17 5月, 2015 1 次提交
  4. 22 10月, 2014 1 次提交
  5. 10 2月, 2014 1 次提交
    • N
      modify iniparser to build unbounded keys & values from multi-line input · fc4413d0
      Noel Power 提交于
      Instead of a size limit of ASCIILINESZ for multi-line input now there is no
      limit, a multi-line can be *any* size (and hence the key and value now
      also have a dynamic size)
      
      * there is a limit still on input line size (since multi lines are built
        from multiple lines where each line part is limited to ASCIILINESZ)
        Note: there is no limit to the size of the multi-line itself (it's
        only limited by available memory)
      * all stack & static fixed string usage has been removed with the exception
        of parsing line (or a multi-line portion) input, fgets still reads into
        a fixed string buffer of size ASCIILINESZ.
      Signed-off-by: NNoel Power <noel.power@suse.com>
      fc4413d0
  6. 23 1月, 2014 1 次提交
    • N
      modify iniparser to build unbounded keys & values from multi-line input · 1c91ade9
      Noel Power 提交于
      Instead of a size limit of ASCIILINESZ for multi-line input now there is no
      limit, a multi-line can be *any* size (and hence the key and value now
      also have a dynamic size)
      
      * there is a limit still on input line size (since multi lines are built
        from multiple lines where each line part is limited to ASCIILINESZ)
        Note: there is no limit to the size of the multi-line itself (it's
        only limited by available memory)
      * all stack & static fixed string usage has been removed with the exception
        of parsing line (or a multi-line portion) input, fgets still reads into
        a fixed string buffer of size ASCIILINESZ.
      Signed-off-by: NNoel Power <noel.power@suse.com>
      1c91ade9
  7. 24 5月, 2012 1 次提交
  8. 28 4月, 2012 1 次提交
    • K
      Mark library functions as "C" linkage · 9af7ca10
      Kevin Pyle 提交于
      The documentation disclaims support for building with a C++ compiler, so
      it is reasonable to assume that the library will be built with a plain C
      compiler, so the functions will all have plain C linkage.  By default, a
      C++ application that wished to use libiniparser would need to wrap the
      inclusion of libiniparser headers in 'extern "C" { ... }' to reflect the
      C linkage of libiniparser.  Instead, place that marker directly in the
      libiniparser headers, so that client applications do not need to care.
      This has no effect on normal compilation of libiniparser, since the new
      markers are inside a '#ifdef __cplusplus' guard, and straight C
      compilers do not define __cplusplus.
      9af7ca10
  9. 08 4月, 2012 1 次提交
  10. 04 4月, 2012 1 次提交
  11. 04 4月, 2011 1 次提交
  12. 20 8月, 2010 1 次提交