Subversion Repositories RepoView

Rev

Rev 3 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 nishi 1
/* $Id: rv_auth.h 5 2024-08-20 22:43:56Z 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);
3 nishi 12
 
13
#endif