finished work

This commit is contained in:
Fangnan
2022-09-28 16:24:43 +08:00
commit 3a65cbab8e
27 changed files with 2085 additions and 0 deletions

5
heads/users.h Normal file
View File

@@ -0,0 +1,5 @@
struct user{
char account[20];
char password[20];
struct user *next;
};