diff options
| author | Federico Angelilli <code@fedang.net> | 2024-05-22 00:37:58 +0200 |
|---|---|---|
| committer | Federico Angelilli <code@fedang.net> | 2024-05-22 00:37:58 +0200 |
| commit | f83f21f98069c3267725c640f090feb6a2628894 (patch) | |
| tree | 6a7a8cc6d8e67f1fcbf677de764c80de9c0d2180 /test/ini.c | |
| parent | 2881783a6d7bc37e03c8639caf8ac0b0876a01c6 (diff) | |
Add multiline ini parsing
Diffstat (limited to 'test/ini.c')
| -rw-r--r-- | test/ini.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -20,7 +20,10 @@ void test_ini() /*13*/ "try = catch 123 bool\n" /*14*/ " k e y = value pair! ; comment\n" /*15*/ " su;s = [x] \n" - /*16*/ " sus \n"; + /*16*/ " sus \n" + /*17*/ "test = multi \\\n" + /*18*/ " line \\\n" + /*19*/ " works ; boh \n"; any_ini_t ini; any_ini_init(&ini, src, strlen(src)); |
