ref: e6b5f8508e18fcab0b33251f9b87bcee9d470ffd
dir: /field.h/
#pragma once #include "base.h" void field_init_zeros(Field* f, U32 height, U32 width); void field_init_fill(Field* f, U32 height, U32 width, Term fill_char); void field_resize_raw(Field* f, U32 height, U32 width); void field_deinit(Field* f); void field_copy_subrect(Field* src, Field* dest, U32 src_y, U32 src_x, U32 dest_y, U32 dest_x, U32 height, U32 width); void field_fill_subrect(Field* f, U32 y, U32 x, U32 height, U32 width, Term fill_char); Term field_peek(Field* f, U32 y, U32 x); void field_poke(Field* f, U32 y, U32 x, Term term); void field_debug_draw(WINDOW* win, Field* f, int offset_y, int offset_x);