Subversion Repositories RepoView

Rev

Rev 5 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 nishi 1
/* $Id: rv_db.h 1 2024-08-20 19:18:25Z nishi $ */
2
 
3
#ifndef __RV_DB_H__
4
#define __RV_DB_H__
5
 
6
#include <stdbool.h>
7
 
8
void rv_init_db(void);
9
void rv_close_db(void);
10
bool rv_has_user(const char* name);
11
 
12
#endif