summaryrefslogtreecommitdiff
path: root/src/draw.h
blob: 5a44f55be16f9028097b0e82b5db54b44ce55296 (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, Entry **entries);

// destroy the tui
void tui_end();

#endif