You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
349 B
21 lines
349 B
#pragma once
|
|
#include <assert.h>
|
|
#include <limits.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
typedef char Term;
|
|
typedef uint32_t U32;
|
|
typedef int32_t I32;
|
|
typedef uint64_t U64;
|
|
typedef int64_t I64;
|
|
|
|
typedef struct {
|
|
Term* buffer;
|
|
U32 height;
|
|
U32 width;
|
|
} Field;
|
|
|