mirror of
https://github.com/log-chipper/chipper.git
synced 2026-06-11 09:13:23 -05:00
4a0aabce43
- Simple unix daemon - Python, Go, and C client
16 lines
366 B
C
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
|