]> git.meshlink.io Git - catta/blobdiff - avahi-common/strlst.h
* Remove support for dbus 0.23.
[catta] / avahi-common / strlst.h
index 4fde8eb8b7e4ebaf0fcaf3250fc7a88495bc1646..01a2c41f812a250d59378f8046f5ac97b83a84ee 100644 (file)
 ***/
 
 #include <glib.h>
+#include <avahi-common/cdecl.h>
+
+/** \file strlst.h Implementation of a data type to store lists of strings */
+
+AVAHI_C_DECL_BEGIN
 
 /** Linked list of strings that can contain any number of binary
- * characters, include NUL bytes. An empty list is created by
+ * characters, including NUL bytes. An empty list is created by
  * assigning a NULL to a pointer to AvahiStringList. The string list
  * is stored in reverse order, so that appending to the string list is
  * effectively a prepending to the linked list.  This object is used
@@ -83,5 +88,7 @@ gboolean avahi_string_list_equal(const AvahiStringList *a, const AvahiStringList
 /** Copy a string list */
 AvahiStringList *avahi_string_list_copy(const AvahiStringList *l);
 
+AVAHI_C_DECL_END
+
 #endif