18 lines
429 B
C
18 lines
429 B
C
#ifndef __TUI_H__
|
|
#define __TUI_H__
|
|
|
|
#include <ncurses.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "main.h"
|
|
#include "users.h"
|
|
|
|
void uartDialog(char *uart_adress, int terminal_x, int terminal_y);
|
|
|
|
void mainMenu(list_t * person_list, int terminal_x, int terminal_y);
|
|
|
|
void personListing(list_t * person_list, int terminal_x, int terminal_y);
|
|
|
|
void personSearch(list_t * person_list, int terminal_x, int terminal_y);
|
|
|
|
#endif |