summaryrefslogtreecommitdiff
path: root/zwgc/string_dictionary_aux.h
diff options
context:
space:
mode:
authorGravatar Karl Ramm <kcr@mit.edu>2008-01-21 03:11:44 +0000
committerGravatar Karl Ramm <kcr@mit.edu>2008-01-21 03:11:44 +0000
commitb6ea75cfc9712b77a0886c4348d6fb519641e40e (patch)
tree65f68bb2db7c6118e80670cd5edc297159f43409 /zwgc/string_dictionary_aux.h
parent71f70d3066d1c038e1794c4ffe804591eda3d1af (diff)
de K&Rify, fix prototypes
Diffstat (limited to 'zwgc/string_dictionary_aux.h')
-rw-r--r--zwgc/string_dictionary_aux.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/zwgc/string_dictionary_aux.h b/zwgc/string_dictionary_aux.h
index 84fac33..e058721 100644
--- a/zwgc/string_dictionary_aux.h
+++ b/zwgc/string_dictionary_aux.h
@@ -25,7 +25,7 @@
* heap.
*/
-extern void string__dictionary_Set();
+extern void string__dictionary_Set(string_dictionary, string, string);
#ifdef DEBUG_MEMORY
#define string_dictionary_Set(a,b,c) (set_module(__FILE__,__LINE__),\
string__dictionary_Set(a,b,c))
@@ -42,7 +42,8 @@ extern void string__dictionary_Set();
* disappear later if key is rebound.
*/
-extern char *string_dictionary_Fetch();
+extern char *string_dictionary_Fetch(string_dictionary,
+ string);
/*
* void string_dictionary_SafeDestroy(string_dictionary d)
@@ -51,6 +52,6 @@ extern char *string_dictionary_Fetch();
* all value's in the dictionary.
*/
-extern void string_dictionary_SafeDestroy();
+extern void string_dictionary_SafeDestroy(string_dictionary);
#endif