This repository has been archived on 2021-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
lemonbbs/src/dbutil.h
2021-12-15 18:52:53 +01:00

12 lines
268 B
C

#ifndef CHATSERVER_DBUTIL_H
#define CHATSERVER_DBUTIL_H
#include <stdint.h>
int dbInit();
int64_t dbVerifyLogin(const char* username, const char* secret);
int dbUsernameTaken(const char* username);
int dbInsertUser(const char* username, const char* secret);
#endif