First commit

This commit is contained in:
2023-03-28 08:08:11 -05:00
commit b048b09f64
5 changed files with 127 additions and 0 deletions

17
user.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef _USER_H
#define _USER_H
typedef struct User_s User;
struct User_s {
char* username;
char* password;
};
User new_user(char* name, char* pass);
#endif