client.h (273B)
1 #ifndef __LINKD_CLI_CLIENT_H__ 2 #define __LINKD_CLI_CLIENT_H__ 3 4 // Connect to the daemon, send argv as a RESP command, render the reply. 5 // Returns a process exit code: 0 on success, 1 on error. 6 int linkd_call(int argc, const char **argv); 7 8 #endif // __LINKD_CLI_CLIENT_H__