ref: 33fa5ff1b58612b8937b148e399f8e7c8041dc7c
dir: /base.h/
#pragma once #include <assert.h> #include <limits.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> typedef char Term; typedef uint32_t U32; typedef int32_t I32; typedef struct { Term* buffer; U32 height; U32 width; } Field;