diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-08 17:33:06 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-08 17:33:06 +0200 |
commit | 7e9fe9395c02dfe12188b02fd3c8315ef02b4436 (patch) | |
tree | eff9d7c77e3f41355880e840e62e5fdd2d915c7c /src/include | |
parent | 0a5e41e80d9fb344f7bbcc1f44a061bbf9bd0242 (diff) |
remove constmap header (is in fehqlibs)
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/constmap.h | 21 | ||||
-rw-r--r-- | src/include/meson.build | 1 |
2 files changed, 0 insertions, 22 deletions
diff --git a/src/include/constmap.h b/src/include/constmap.h deleted file mode 100644 index 4e33dd1..0000000 --- a/src/include/constmap.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef CONSTMAP_H -#define CONSTMAP_H - -typedef unsigned long constmap_hash; - -struct constmap { - int num; - constmap_hash mask; - constmap_hash *hash; - int *first; - int *next; - char **input; - 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 *cm); -extern char *constmap(struct constmap *cm, char *s, int len); - -#endif diff --git a/src/include/meson.build b/src/include/meson.build index ca8c752..4f4bbe5 100644 --- a/src/include/meson.build +++ b/src/include/meson.build @@ -56,7 +56,6 @@ add_project_arguments('-DUSE_CONFIG', language : 'c') sqmail_hdrs = [ 'base64.h', 'commands.h', - 'constmap.h', 'control.h', 'date822fmt.h', 'datetime.h', |