Enhance user information handling: add exportPersonInfo function, improve TUI dialogs, and refactor related code for better clarity and functionality.

This commit is contained in:
2025-05-17 20:22:54 +02:00
parent c84987239e
commit 1923b91ff4
10 changed files with 299 additions and 89 deletions
+24 -1
View File
@@ -1,13 +1,36 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdint.h>
#include <time.h>
#include <unistd.h>
#include <pthread.h>
#include <ncurses.h>
#include <pthread.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <termios.h>
#include <string.h>
#include <signal.h>
#include "utils.h"
#ifndef __MAIN_H__
#define __MAIN_H__
#define TRUE !0
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef BYTE
#define BYTE uint8_t
#endif
#define MIN_X_TERMINAL_SIZE 50
#define MIN_Y_TERMINAL_SIZE 20