// Copyright (c) 2024, Marvin Borner // SPDX-License-Identifier: MIT #ifndef IMPL_H #define IMPL_H #include #include 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