mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-18 15:16:22 +00:00
15 lines
336 B
C
15 lines
336 B
C
#ifndef __H_PROFTEST
|
|
#define __H_PROFTEST
|
|
|
|
#define XDG_CONFIG_HOME "./functionaltests/files/xdg_config_home"
|
|
#define XDG_DATA_HOME "./functionaltests/files/xdg_data_home"
|
|
|
|
void init_prof_test(void **state);
|
|
void close_prof_test(void **state);
|
|
|
|
void prof_start(void);
|
|
void prof_input(char *input);
|
|
int prof_output(char *text);
|
|
|
|
#endif
|