Subversion Repositories RepoView

Rev

Rev 1 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 9
Line 1... Line 1...
1
/* $Id: dbm.c 1 2024-08-20 19:18:25Z nishi $ */
1
/* $Id: dbm.c 9 2024-08-21 02:02:13Z nishi $ */
-
 
2
 
-
 
3
#include "rv_db.h"
-
 
4
 
-
 
5
#include "rv_sha512.h"
-
 
6
 
-
 
7
#include <ndbm.h>
-
 
8
 
-
 
9
#include <stdbool.h>
-
 
10
 
-
 
11
void rv_init_db(void) {}
-
 
12
 
-
 
13
void rv_close_db(void) {}
-
 
14
 
-
 
15
bool rv_has_user(const char* name) {}
-
 
16
 
-
 
17
bool rv_check_password(const char* username, const char* password) {}
-
 
18
 
-
 
19
void rv_save_token(const char* username, const char* token) {}
-
 
20
 
-
 
21
char* rv_who_has_token(const char* token) {}
-
 
22
 
-
 
23
bool rv_has_token(const char* token) {}
-
 
24
 
-
 
25
void rv_remove_token(const char* token) {}