Update draw.h

This commit is contained in:
Haven King 2019-06-26 20:46:02 -05:00 committed by GitHub
parent 06357bdbfa
commit b65f6b3727
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -40,8 +40,8 @@ void draw_init(struct term_buf* buf);
void draw_free(struct term_buf* buf);
void draw_box(struct term_buf* buf);
struct tb_cell* strn_cell(char* s, u16 len);
struct tb_cell* str_cell(char* s);
struct tb_cell* strn_cell(char* s, u16 len, bool box);
struct tb_cell* str_cell(char* s, bool box);
void draw_labels(struct term_buf* buf);
void draw_f_commands();