mirror of
https://github.com/kkk2z/CatOS.git
synced 2024-12-22 10:45:29 +00:00
7 lines
177 B
C
7 lines
177 B
C
|
#ifndef ACCOUNT_H
|
||
|
#define ACCOUNT_H
|
||
|
|
||
|
void create_account(const char* username, const char* password);
|
||
|
void authenticate_user(const char* username, const char* password);
|
||
|
|
||
|
#endif
|