Files
chipper/clients/c/chipper_client.h
T
darwincereska 4a0aabce43 feat: first init
- Simple unix daemon
- Python, Go, and C client
2026-04-13 22:34:27 -04:00

16 lines
366 B
C

/**
* @file chipper_client.h
* @brief The C client sdk for connecting to the Chipper Socket
*/
#ifndef CHIPPER_CLIENT_H
#define CHIPPER_CLIENT_H
int chipper_client_init(const char *socket_path, const char *service, const char *source);
void chipper_client_close(void);
int chipper_client_log(const char *level, const char *fmt, ...);
#endif // CHIPPER_CLIENT_H