1 typedef enum {
2     ALIGN_LEFT,
3     ALIGN_CENTER
4 } align_t;
5 
6 void text_buf_push(char *line, int color, align_t align);
7 void text_buf_update(void);
8 void text_buf_clear(void);
9