blob: 0197436909a0819261cc72673d31cdab8d23fc7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* Copyright (C) 2025 dwlr <dweller@cabin.digital>
*
* BSD 3-Clause License (BSD-3-Clause)
* See LICENSE for details
*/
#define iota __COUNTER__
#define lengthof(x) (sizeof(x) / sizeof((x)[0]))
#define bit(x) (1 << (x))
#define KB bit(10)
#define MB bit(11)
#define GB bit(12)
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned long long u64;
typedef u64 usize;
typedef u8 bool;
#define true 1
#define false 0
|