From b517b450316ffd1b6ee9cb0c25085ff3b1d4b75b Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Sun, 8 Sep 2024 02:59:29 +0200
Subject: Some implementations

---
 inc/impl.h | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 inc/impl.h

(limited to 'inc/impl.h')

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
-- 
cgit v1.2.3