From 4f9d0247549b06ddb25b76bb425541190105cb48 Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Sun, 26 Jul 2026 19:20:30 -0700 Subject: functioning type system perhaps? --- ccc.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ccc.h') diff --git a/ccc.h b/ccc.h index 475704a..3542e60 100644 --- a/ccc.h +++ b/ccc.h @@ -2,8 +2,11 @@ #define CCC_H #define CCC_PANIC { perror("ccc"); exit(1); } +#define ARRAY_SZ(x) (sizeof(x) / sizeof(x[0])) typedef unsigned long long integral_t; typedef double floating_t; +void* ccc_alloc(integral_t sz); + #endif -- cgit v1.2.3