aboutsummaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
authorMarvin Borner2023-05-30 23:05:30 +0200
committerMarvin Borner2023-05-30 23:33:39 +0200
commitcbd21e1da0d763225e7ea3594d4e6d8e96863790 (patch)
treedae4242584e178b59337ca247aa532805af0d8d0 /src/term.c
parente78acdabd1436083c503a5f1860ecdf14f3ee1bd (diff)
Added hash-based approach
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/term.c b/src/term.c
index aa7c17b..a301aa3 100644
--- a/src/term.c
+++ b/src/term.c
@@ -8,12 +8,13 @@
#include <log.h>
#include <term.h>
-struct term *term_new(term_type_t type)
+struct term *term_new(term_type_t type, hash_t hash)
{
- struct term *term = malloc(sizeof(*term));
+ struct term *term = calloc(sizeof(*term), 1);
if (!term)
fatal("out of memory!\n");
term->type = type;
+ term->hash = hash;
return term;
}