CatOS/include/account.h

7 lines
177 B
C
Raw Permalink Normal View History

2024-07-22 04:46:44 +00:00
#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