From d0b2a6deb5c48fc0f40a979401ea8e99eea7a65e Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Mon, 28 Oct 2013 23:59:59 -0700 Subject: Pull shader file names from config file. --- tern.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tern.h') 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); -- cgit v1.2.3