Add extern "C" guards to all header files.
[radsecproxy.git] / lib / rsp_list.h
index 80c0128..83e8cb5 100644 (file)
 #include <stdint.h>
 #endif
 
+#if defined (__cplusplus)
+extern "C" {
+#endif
+
 struct list_node {
     struct list_node *next;
     void *data;
@@ -46,6 +50,10 @@ struct list_node *list_next(struct list_node *node);
 /* returns number of nodes */
 uint32_t list_count(struct list *list);
 
+#if defined (__cplusplus)
+}
+#endif
+
 /* Local Variables: */
 /* c-file-style: "stroustrup" */
 /* End: */