From f65558c3ae2ee4439d12344f79c09b6e82519f5d Mon Sep 17 00:00:00 2001 From: dweller Date: Wed, 26 Mar 2025 20:12:14 +0200 Subject: add most of the instructions, needs testing --- sources/bits.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sources/bits.c') diff --git a/sources/bits.c b/sources/bits.c index a6b7887..ba52f4f 100644 --- a/sources/bits.c +++ b/sources/bits.c @@ -1,5 +1,7 @@ #define iota __COUNTER__ +#define lengthof(x) (sizeof(x) / sizeof((x)[0])) + #define bit(x) (1 << (x)) #define KB bit(10) @@ -9,6 +11,7 @@ typedef unsigned char u8; typedef unsigned short u16; typedef unsigned long long u64; +typedef u64 usize; typedef u8 bool; #define true 1 -- cgit v1.2.3