An open API service indexing awesome lists of open source software.

https://github.com/rhaeguard/zigini

ini file parser for zig for learning purposes
https://github.com/rhaeguard/zigini

ini iniparser zig ziglang

Last synced: about 1 year ago
JSON representation

ini file parser for zig for learning purposes

Awesome Lists containing this project

README

          

# zigini

experimental ini file parser for zig.

example:

```zig
pub fn main() anyerror!void {
var inifile = try IniFile.parse("./examples/example_1.ini", std.heap.page_allocator);
defer inifile.deinit();

var result = inifile.get("owner", "name");

std.log.info("result : {s}", .{result.?});
}
```