#ifndef _APP_PROXY_H_ #define _APP_PROXY_H_ /* * @brief getter for proxy subcommand syntax string * * @returns null-terminated syntax string */ char* proxy_syntax(void); /* * @brief CLI implementation for the "proxy" subcommand * * @param argc number of arguments with command and subcommand stripped * @param argv arguments with command and subcommand stripped * * @returns 0 on success, else error with output on stderr */ int handle_proxy(int argc, char** argv); #endif