view cfg.test01 @ 753:64cb2b1777a9

Rename function th_llist_find() to th_llist_find_data().
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 26 Jan 2023 07:23:12 +0200
parents 77495c646208
children
line wrap: on
line source

# Configuration written by th-libs unit tests 0.2

general = {
    # A comment that
    # spans multiple
    # lines automatically
    a_string_setting = "v_str1" #test

    # Hex triplet value setting
    hexval="11223344"

    # A boolean value
    boolval = no

    # A string list
    string_list = "\zoo",

   "foo",
"b\"ar"
}

another_sect = {
    # Another section
    boolval = yes
    inside_sect = {
        # Section inside a section
        intval
= 112
    }
}