#include <stdbool.h>
#include <stddef.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
struct svec {
char **names;
void svec_clone(struct svec *, const struct svec *);
void svec_destroy(struct svec *);
void svec_clear(struct svec *);
+ bool svec_is_empty(const struct svec *);
void svec_add(struct svec *, const char *);
void svec_add_nocopy(struct svec *, char *);
void svec_del(struct svec *, const char *);
? (NAME) = (SVEC)->names[INDEX], 1 \
: 0); \
(INDEX)++)
+
+#ifdef __cplusplus
+}
+#endif
#endif /* svec.h */
#ifndef UNIXCTL_H
#define UNIXCTL_H 1
+
+#ifdef __cplusplus
+extern "C" {
+#endif
/* Server for Unix domain socket control connection. */
struct unixctl_server;
/* Command registration. */
struct unixctl_conn;
+ typedef void unixctl_cb_func(struct unixctl_conn *,
+ const char *args, void *aux);
void unixctl_command_register(const char *name,
- void (*cb)(struct unixctl_conn *,
- const char *args));
+ unixctl_cb_func *cb, void *aux);
void unixctl_command_reply(struct unixctl_conn *, int code,
const char *body);
+
+#ifdef __cplusplus
+}
+#endif
#endif /* unixctl.h */