summaryrefslogtreecommitdiff
path: root/tern.h
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-10-28 23:59:59 -0700
committerMike Pavone <pavone@retrodev.com>2013-10-28 23:59:59 -0700
commitd0b2a6deb5c48fc0f40a979401ea8e99eea7a65e (patch)
tree57770eaf1f0db4cbb4e5416e29dd9d9862965e70 /tern.h
parent27eb6b37f9b2a9b0c05770475fb28f8792fcf5c5 (diff)
Pull shader file names from config file.
Diffstat (limited to 'tern.h')
-rw-r--r--tern.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tern.h b/tern.h
index e727599..e95e0c9 100644
--- a/tern.h
+++ b/tern.h
@@ -1,6 +1,6 @@
/*
Copyright 2013 Michael Pavone
- This file is part of BlastEm.
+ This file is part of BlastEm.
BlastEm is free software distributed under the terms of the GNU General Public License version 3 or greater. See COPYING for full license text.
*/
#ifndef TERN_H_
@@ -28,6 +28,7 @@ int tern_find(tern_node * head, char * key, tern_val *ret);
tern_node * tern_find_prefix(tern_node * head, char * key);
intptr_t tern_find_int(tern_node * head, char * key, intptr_t def);
tern_node * tern_insert_int(tern_node * head, char * key, intptr_t value);
+void * tern_find_ptr_default(tern_node * head, char * key, void * def);
void * tern_find_ptr(tern_node * head, char * key);
tern_node * tern_insert_ptr(tern_node * head, char * key, void * value);