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:
@@ -3,8 +3,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __DB_HANDLER_H__
|
||||
#define __DB_HANDLER_H__
|
||||
#ifndef __FILE_HANDLER_H__
|
||||
#define __FILE_HANDLER_H__
|
||||
|
||||
#include "main.h"
|
||||
#include "users.h"
|
||||
+3
-1
@@ -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
|
||||
Reference in New Issue
Block a user