Ini-File Handling https://c-util.github.io/c-ini
Find a file
David Rheinsberg d08d5edeae build: release v1.1.0
Release c-ini 1.1.0.

Signed-off-by: David Rheinsberg <david@readahead.eu>
2023-12-12 15:50:41 +01:00
.github/workflows ci: synchronize triggers 2023-12-12 15:49:18 +01:00
src build: use new c-stdaux variables 2023-12-12 15:48:43 +01:00
subprojects build: align with new c-util style 2022-05-03 11:04:12 +02:00
.editorconfig c-ini: implement reader 2018-10-30 13:46:02 +01:00
.gitmodules build: align with new c-util style 2022-05-03 11:04:12 +02:00
AUTHORS build: synchronize AUTHORS 2022-06-15 09:54:00 +02:00
meson.build build: release v1.1.0 2023-12-12 15:50:41 +01:00
NEWS.md build: release v1.1.0 2023-12-12 15:50:41 +01:00
README.md build: align with new c-util style 2022-05-03 11:04:12 +02:00

c-ini

Ini-File Handling

The c-ini project implements APIs to deal with ini-files. Different formats can be supported, but all share common ini-file properties, mainly that they are human-readable, grouped key-value pairs. For API documentation, see the public header files, as well as the docbook comments for each function.

Project

Requirements

The requirements for this project are:

  • libc (e.g., glibc >= 2.16)

At build-time, the following software is required:

  • meson >= 0.60
  • pkg-config >= 0.29

Build

The meson build-system is used for this project. Contact upstream documentation for detailed help. In most situations the following commands are sufficient to build and install from source:

mkdir build
cd build
meson setup ..
ninja
meson test
ninja install

No custom configuration options are available.

Repository:

License:

  • Apache-2.0 OR LGPL-2.1-or-later
  • See AUTHORS file for details.