diff options
author | Marvin Borner | 2023-04-11 20:56:14 +0200 |
---|---|---|
committer | Marvin Borner | 2023-04-11 20:56:14 +0200 |
commit | 5c8f9487ec11035cbd1accfb67f1a4943a2b8db1 (patch) | |
tree | 8a294e7efe801986b6e7f9e19a5ed962aa816c4f /inc/term.h | |
parent | 4b40b490d3948a2ccf736bcf94b95abf44955a38 (diff) |
Bootstrapping
Diffstat (limited to 'inc/term.h')
-rw-r--r-- | inc/term.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/inc/term.h b/inc/term.h new file mode 100644 index 0000000..a90bdd3 --- /dev/null +++ b/inc/term.h @@ -0,0 +1,32 @@ +// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de> +// SPDX-License-Identifier: MIT + +#ifndef BLOC_TERM_H +#define BLOC_TERM_H + +#include <stddef.h> + +typedef enum { INV, ABS, APP, VAR, REF } term_type; + +struct term { + term_type type; + union { + struct { + struct term *term; + } abs; + struct { + struct term *lhs; + struct term *rhs; + } app; + struct { + int index; + } var; + struct { + size_t index; + } ref; + } u; +}; + +struct term *new_term(term_type type); + +#endif |