From 5c010682401b65a2b9b7ac421c17897d9f381c6d Mon Sep 17 00:00:00 2001 From: cancel Date: Mon, 3 Dec 2018 16:42:18 +0900 Subject: [PATCH] Remove unused stuff from tui --- tui_main.c | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/tui_main.c b/tui_main.c index ab3b6ae..6efb8c1 100644 --- a/tui_main.c +++ b/tui_main.c @@ -176,25 +176,6 @@ void draw_tui_cursor(WINDOW* win, Glyph const* gbuffer, Usz field_h, waddchnstr(win, &ch, 1); } -typedef struct Field_pool_node { - Field field; - struct Field_pool_node* next; -} Field_pool_node; - -typedef struct { - Field_pool_node* head; - Usz count; -} Field_pool; - -void field_pool_take(Field_pool* pool, Field* out) { - (void)pool; - (void)out; -} -void field_pool_give(Field_pool* pool, Field* given) { - (void)pool; - (void)given; -} - typedef struct Undo_node { Field field; Usz tick_num;