From 063c40584ae78a396b558a5e2a08e3d871450c0b Mon Sep 17 00:00:00 2001 From: Quinn Stephens Date: Sun, 3 Nov 2024 19:12:47 -0500 Subject: [compiler] Parse and print procedure declarations Signed-off-by: Quinn Stephens --- include/parser/var.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 include/parser/var.h (limited to 'include/parser/var.h') diff --git a/include/parser/var.h b/include/parser/var.h new file mode 100644 index 0000000..dd981f5 --- /dev/null +++ b/include/parser/var.h @@ -0,0 +1,24 @@ +/* + * Variable definitions. + * Copyright (c) 2023-2024, Quinn Stephens and the OSMORA team. + * Provided under the BSD 3-Clause license. + */ + +#ifndef _PARSER_VAR_H +#define _PARSER_VAR_H + +#include +#include "hashmap.h" +#include "parser/type.h" + +struct variable { + struct hashmap_entry hashmap_entry; + + char *name; + size_t name_len; + + struct type *typ; + int n_ptrs; +}; + +#endif /* !_PARSER_VAR_H */ -- cgit v1.2.3