aboutsummaryrefslogtreecommitdiff
path: root/src/include/tree.h
diff options
context:
space:
mode:
authors-over-42023-08-29 10:17:27 -0400
committers-over-42023-08-29 10:17:27 -0400
commit4176dea8503cc8eebfa24b14aaefc3a8dc643230 (patch)
treed2fd320fa4c83fcd397995ff009ae565b6a5e933 /src/include/tree.h
parent497a3b690c3828775ad1d141f53484a748d5b61a (diff)
g
Diffstat (limited to 'src/include/tree.h')
-rw-r--r--src/include/tree.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/tree.h b/src/include/tree.h
index fde66ea..a2b71da 100644
--- a/src/include/tree.h
+++ b/src/include/tree.h
@@ -21,15 +21,17 @@ typedef struct TREE_STRUC {
struct { // === DEFINITIONS ===
char* type; // the definition type
char** tags; // the definition tags
+ size_t tags_size; // the number of tags
char* name; // the definition name
+ struct TREE_STRUC** args; // the arguments the definition will accept
+ size_t args_size; // the number of arguments
struct TREE_STRUC* value; // value of definition
- // :D lines line up :D
} def;
struct { // === CALLS ===
char* target; // name of definition being called
struct TREE_STRUC** args; // arguments passed to definition
- size_t args_size; // size of arguments
+ size_t args_size; // the number of arguments
} call;
// === TYPES ===