summaryrefslogtreecommitdiff
path: root/tern.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2017-12-01 09:22:43 -0800
committerMichael Pavone <pavone@retrodev.com>2017-12-01 09:22:43 -0800
commit670252dd0d070daa2b63c6846f4705157a620b94 (patch)
treece9b26be7d3ad27c6343a5aba00045ddd82a27ef /tern.h
parentdbe1d84613796c610b65236d6bbe673fe952c2c8 (diff)
Somewhat fleshed out video settings view
--HG-- branch : nuklear_ui
Diffstat (limited to 'tern.h')
-rw-r--r--tern.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tern.h b/tern.h
index 57c62ff..6b239e9 100644
--- a/tern.h
+++ b/tern.h
@@ -47,6 +47,7 @@ tern_val tern_find_path_default(tern_node *head, char const *key, tern_val def,
tern_val tern_find_path(tern_node *head, char const *key, uint8_t valtype);
tern_node * tern_insert_ptr(tern_node * head, char const * key, void * value);
tern_node * tern_insert_node(tern_node *head, char const *key, tern_node *value);
+tern_node *tern_insert_path(tern_node *head, char const *key, tern_val val, uint8_t valtype);
uint32_t tern_count(tern_node *head);
void tern_foreach(tern_node *head, iter_fun fun, void *data);
char * tern_int_key(uint32_t key, char * buf);