1 #ifndef STATS_CARBON
2 #define STATS_CARBON 1
3 
4 struct stats_send_ctx;
5 
6 int
7 stats_carbon_send(const char *endpoint, const char *data,
8 		  void (*callback)(void *), void *cb_ctx,
9 		  struct stats_send_ctx **ctx_r);
10 void
11 stats_carbon_destroy(struct stats_send_ctx **ctx);
12 
13 #endif
14