summaryrefslogtreecommitdiffstats
path: root/common/collection/collection_tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/collection/collection_tools.h')
-rw-r--r--common/collection/collection_tools.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/collection/collection_tools.h b/common/collection/collection_tools.h
index defc4aa04..a8d13f749 100644
--- a/common/collection/collection_tools.h
+++ b/common/collection/collection_tools.h
@@ -98,4 +98,10 @@ int print_collection2(struct collection_item *handle);
/* Find and print one item using default serialization */
int print_item(struct collection_item *handle, char *name);
+/* Convert collection to list of properties */
+char **collection_to_list(struct collection_item *handle, int *size, int *error);
+
+/* Function to free the list of properties. */
+void free_property_list(char **str_list);
+
#endif