summaryrefslogtreecommitdiff
path: root/src/ast/ast.h
diff options
context:
space:
mode:
authorZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-01-16 10:22:05 +0000
committerZuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian>2026-01-16 10:28:25 +0000
commit489c393d47ac42dee939e741b732958b082539a7 (patch)
tree9f5619374f605bd276d78ccc5e793a6433ffa6fc /src/ast/ast.h
parent46b0cfd792a2187d8984f55b9cf59493ec078239 (diff)
Fixed bug related to 'defer' and added some examples.
Diffstat (limited to 'src/ast/ast.h')
-rw-r--r--src/ast/ast.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ast/ast.h b/src/ast/ast.h
index 0fa2e24..50b926e 100644
--- a/src/ast/ast.h
+++ b/src/ast/ast.h
@@ -486,6 +486,7 @@ void ast_free(ASTNode *node);
Type *type_new(TypeKind kind);
Type *type_new_ptr(Type *inner);
int type_eq(Type *a, Type *b);
+int is_integer_type(Type *t);
char *type_to_string(Type *t);
#endif