CatOS/include/account.h
2024-07-22 04:46:44 +00:00

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