first commit

This commit is contained in:
2025-03-24 17:28:07 +01:00
parent 7ec8fd05aa
commit 3e5f57c18f
6 changed files with 248 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#include <stdint.h>
#include <time.h>
#ifndef __USERS_H__
#define __USERS_H__
typedef struct person
{
uint16_t uuid;
char *name;
char *surname;
uint8_t department;
time_t last_timestamp;
uint32_t total;
} person_t;
typedef struct node
{
person_t user;
struct node *next;
} node_t;
#endif