diff options
author | Marvin Borner | 2024-09-08 02:59:29 +0200 |
---|---|---|
committer | Marvin Borner | 2024-09-08 02:59:29 +0200 |
commit | b517b450316ffd1b6ee9cb0c25085ff3b1d4b75b (patch) | |
tree | c8443878c7994d0180b70c4a4e01c0f12bb86166 /inc/impl.h | |
parent | 3f84a966ab0eca4ccbab5f1d5fdea089007b4d7f (diff) |
Some implementations
Diffstat (limited to 'inc/impl.h')
-rw-r--r-- | inc/impl.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/inc/impl.h b/inc/impl.h new file mode 100644 index 0000000..115468b --- /dev/null +++ b/inc/impl.h @@ -0,0 +1,23 @@ +// Copyright (c) 2024, Marvin Borner <dev@marvinborner.de> +// SPDX-License-Identifier: MIT + +#ifndef IMPL_H +#define IMPL_H + +#include <stdio.h> + +#include <term.h> + +typedef struct { + const char *name; + void (*encode)(Term *, FILE *); + Term *(*decode)(FILE *); +} Impl; + +Impl impl_blc(void); +Impl impl_blc2(void); +Impl impl_closed(void); +Impl impl_app(void); +Impl impl_abs(void); + +#endif |