blob: 431e0d760e9d6e4f59268c2880813f7bfea146b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __GS_AUTH_H
#define __GS_AUTH_H
#include <stdbool.h>
#include "client.h"
int gs_auth_authenticate(GSClient *c, const char *email, const char *password);
bool gs_auth_is_logged_in(GSClient *c);
#endif
|