Files
chat_application/user.h
2023-03-28 08:08:11 -05:00

18 lines
181 B
C

#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