aboutsummaryrefslogtreecommitdiff
path: root/src/state.h
blob: 79c5861c32e8782afcbdcd743bbf760a36f8e463 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef STATE_H_
#define STATE_H_

char state_set_ssh_destination(const char * dest);
const char * state_get_ssh_destination(void);
char state_set_username(const char * name);
const char * state_get_username(void);
char state_set_session_id(const int id);
int state_get_session_id(void);
void state_clean(void);

#endif