- Intermediary is fully functional - Proxy is ready until invocation of enclave
12 lines
183 B
C
12 lines
183 B
C
#ifndef _APP_UTIL_H_
|
|
#define _APP_UTIL_H_
|
|
|
|
|
|
/*
|
|
* @brief prints the command syntax and exits with EXIT_FAILURE
|
|
*/
|
|
void syntax_exit(void);
|
|
|
|
void set_bin_name(char* bin_name);
|
|
|
|
#endif
|