Subversion Repositories RepoView

Rev

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

Rev Author Line No. Line
3 nishi 1
/* $Id: rv_auth.h 7 2024-08-21 01:12:44Z nishi $ */
2
 
3
#ifndef __RV_AUTH_H__
4
#define __RV_AUTH_H__
5
 
6
#include <stdbool.h>
7
 
8
char* rv_logged_in(void);
9
void rv_free_auth(void);
5 nishi 10
void rv_init_auth(void);
11
void rv_save_login(const char* username);
7 nishi 12
void rv_logout(void);
3 nishi 13
 
14
#endif