blob: d05852c9b2c2aa8337e266a35d5cdad40d5b9484 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef DRAW_H
#define DRAW_H
#include "entry.h"
#include "group.h"
// initialize the tui
void tui_init(Group **groups, int g_count, Entry **entries, int e_count);
// destroy the tui
void tui_end();
#endif
|