@@ -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
The note is not visible to the blocked user.