summaryrefslogtreecommitdiff
path: root/include/constmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/constmap.h')
-rw-r--r--include/constmap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/constmap.h b/include/constmap.h
index 750702e..26d945d 100644
--- a/include/constmap.h
+++ b/include/constmap.h
@@ -11,11 +11,11 @@ struct constmap {
int *next;
char **input;
int *inputlen;
-} ;
+};
int constmap_init(struct constmap *,char *,int,int);
int constmap_init_char(struct constmap *,char *,int,int,char);
-void constmap_free();
-char *constmap();
+void constmap_free(struct constmap *);
+char *constmap(struct constmap *,char *,int);
#endif