Rev 5 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: rv_auth.h 7 2024-08-21 01:12:44Z nishi $ */
#ifndef __RV_AUTH_H__
#define __RV_AUTH_H__
#include <stdbool.h>
char* rv_logged_in(void);
void rv_free_auth(void);
void rv_init_auth(void);
void rv_save_login(const char* username);
void rv_logout(void);
#endif