0
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-07-05 17:28:00 -04:00

17 lines
383 B
C
Raw Normal View History

2015-05-25 02:18:31 +01:00
#ifndef __H_PROFTEST
#define __H_PROFTEST
2015-05-28 19:01:49 +01:00
#define XDG_CONFIG_HOME "./functionaltests/files/xdg_config_home"
#define XDG_DATA_HOME "./functionaltests/files/xdg_data_home"
2015-05-26 23:22:05 +01:00
2015-05-17 01:11:03 +01:00
void init_prof_test(void **state);
void close_prof_test(void **state);
2015-05-25 02:18:31 +01:00
2015-05-28 20:02:16 +01:00
2015-05-27 01:06:17 +01:00
void prof_start(void);
2015-05-28 20:02:16 +01:00
void prof_connect(char *jid, char *password);
2015-05-27 01:06:17 +01:00
void prof_input(char *input);
int prof_output(char *text);
2015-05-26 23:22:05 +01:00
#endif