Refactor database handling: remove db_handler module, implement file_handler for CSV operations, and update TUI to integrate new export functionality.

This commit is contained in:
2025-05-17 21:20:29 +02:00
parent 1923b91ff4
commit c311dce195
5 changed files with 121 additions and 9 deletions
+3 -1
View File
@@ -18,6 +18,8 @@ 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)
void exportDialog(list_t *_list, int terminal_x, int terminal_y);
void editDatabaseMenu(list_t *_person_list, int terminal_x, int terminal_y);
#endif