Subversion Repositories RepoView

Rev

Rev 9 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 nishi 1
/* $Id: dbm.c 13 2024-08-21 12:31:40Z nishi $ */
9 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) {}
13 nishi 26
 
27
void rv_create_user(const char* username, const char* password) {}