blob: c20bf5d8ccfb0dbabaf20a5915413ab1395c4456 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef STATS_CLIENT_H
#define STATS_CLIENT_H
struct stats_client *
stats_client_init(const char *path, bool silent_notfound_errors);
void stats_client_deinit(struct stats_client **client);
#endif
|