diff options
author | pommicket <pommicket@gmail.com> | 2025-09-15 18:54:37 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-15 18:54:37 -0400 |
commit | d5cf3acb7a45b7e46bf51dc6a66030d7bc986597 (patch) | |
tree | 357dc594623a3abc2a04d2d516df3bed9406a933 /examples | |
parent | 2b519f42fec913763abd0d967301916e763e770a (diff) |
Interpretation tests, various bugfixes
Diffstat (limited to 'examples')
-rw-r--r-- | examples/conf.pom | 5 | ||||
-rw-r--r-- | examples/read_conf.c | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/examples/conf.pom b/examples/conf.pom index 016179a..6011308 100644 --- a/examples/conf.pom +++ b/examples/conf.pom @@ -1,4 +1 @@ -things = "ten, - great\,things, - i\\really, - love +things = \,,,76 diff --git a/examples/read_conf.c b/examples/read_conf.c index acc3eba..d96e190 100644 --- a/examples/read_conf.c +++ b/examples/read_conf.c @@ -2,7 +2,7 @@ #include <string.h> #include <inttypes.h> -#include "pom.h" +#include <pom.h> int main(int argc, char **argv) { pom_error *error; |