summaryrefslogtreecommitdiff
path: root/include/constmap.h
diff options
context:
space:
mode:
authorJannis Hoffmann <jannis@fehcom.de>2024-09-28 21:20:40 +0200
committerJannis Hoffmann <jannis@fehcom.de>2024-09-28 21:33:03 +0200
commit8e7e029114c59341ec793dc9e96ee410a5f37e2b (patch)
treeac196b359c93716158dedd767f425d9e093c9b71 /include/constmap.h
parentf9a8fff2f90626aadd915178d04ece49d8c4884a (diff)
update to version 25meson
Diffstat (limited to 'include/constmap.h')
-rw-r--r--include/constmap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/constmap.h b/include/constmap.h
index 4d5e2d3..723cb6f 100644
--- a/include/constmap.h
+++ b/include/constmap.h
@@ -13,9 +13,9 @@ struct constmap {
int *inputlen;
};
-extern int constmap_init(struct constmap *, char *, int, int);
-extern int constmap_init_char(struct constmap *, char *, int, int, char);
-extern void constmap_free(struct constmap *);
-extern char *constmap(struct constmap *cm, char *s, int len);
+int constmap_init(struct constmap *, char *, int, int);
+int constmap_init_char(struct constmap *, char *, int, int, char);
+void constmap_free(struct constmap *);
+char *constmap(struct constmap *, char *, int);
#endif