gz-cpp-util 1.3
A c++20 library containing various utilities
FileIO

Filetypes

Simple Key-Value file

A file that contains key - value pairs in each line, separated with "=". Whitespaces around the separator are allowed. If the first character of a line is "#", the whole line is a comment. Example:

key1 = value1
# this is a comment
key2= #this_is_value_not_a_comment
arr = val1, val2, val3