diff options
Diffstat (limited to 'inc/print.h')
-rw-r--r-- | inc/print.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/inc/print.h b/inc/print.h new file mode 100644 index 0000000..9885f57 --- /dev/null +++ b/inc/print.h @@ -0,0 +1,12 @@ +// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de> +// SPDX-License-Identifier: MIT + +#ifndef BLOC_PRINT_H +#define BLOC_PRINT_H + +#include <term.h> + +void print_bruijn(struct term *term); +void print_blc(struct term *term); + +#endif |