Termbox's interface only consists of 12 functions:
tb_init() // initialization
tb_shutdown() // shutdown
tb_width() // width of the terminal screen
tb_height() // height of the terminal screen
tb_clear() // clear buffer
tb_present() // sync internal buffer with terminal
tb_put_cell()
tb_change_cell()
tb_blit() // drawing functions
tb_select_input_mode() // change input mode
tb_peek_event() // peek a keyboard event
tb_poll_event() // wait for a keyboard event
See termbox.h
header file for full detail.
RT-Thread online packages --->
miscellaneous packages --->
[*] termbox: library for writing text-based user interfaces
Maintainer: Meco Man
Homepage: https://github.com/mysterywolf/termbox
This repository forks from nullgemm/termbox_next and termbox2