aboutsummaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-11-23 13:52:15 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-11-23 13:52:15 -0500
commit80505a7eb147422226d1b86da17f516982d0f4c8 (patch)
tree9265fd867d115711192705e6688a29df573fd057 /src/types.h
parent0fa9a52090eb5d9ce88220c0134a8d2af6eb8d94 (diff)
Better error messages and bugfix for compile_to_type logic
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h
index 2a94a512..b8f9a42f 100644
--- a/src/types.h
+++ b/src/types.h
@@ -136,6 +136,7 @@ struct type_s {
_make_function_type(ret, sizeof((arg_t[]){__VA_ARGS__}) / sizeof(arg_t), (arg_t[]){__VA_ARGS__})
Text_t type_to_text(type_t *t);
+Text_t arg_types_to_text(arg_t *args, const char *separator);
const char *get_type_name(type_t *t);
PUREFUNC bool type_eq(type_t *a, type_t *b);
PUREFUNC bool type_is_a(type_t *t, type_t *req);