Primitives
Fixed-width types and a unified Result enum for architectural clarity.
Type Reference
Type
Bit Width
Standard C
Use Case
Result Codes
typedef enum {
OK = 0,
OOM, // Out of Memory
OOB, // Out of Bounds
INVALID_KEY, // Hash Map Miss
FILE_NOT_FOUND, // FS Error
IO_ERROR, // Generic IO Failure
TYPE_ERROR // Type Mismatch
} Result;Last updated