Enhance user information handling: add exportPersonInfo function, improve TUI dialogs, and refactor related code for better clarity and functionality.
This commit is contained in:
+8
-3
@@ -4,15 +4,20 @@
|
||||
#include <ncurses.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdbool.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 mainMenu(list_t *person_list, int terminal_x, int terminal_y);
|
||||
|
||||
void personListing(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);
|
||||
void personSearch(list_t *person_list, int terminal_x, int terminal_y);
|
||||
|
||||
void personInfo(node_t *_person, int terminal_x, int terminal_y);
|
||||
|
||||
void exportDialog(list_t _list, int terminal_x, int terminal_y)
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user