summaryrefslogtreecommitdiffstats
path: root/include/plist/plist.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/plist/plist.h')
-rw-r--r--include/plist/plist.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/plist/plist.h b/include/plist/plist.h
index d3f0836..47e5df3 100644
--- a/include/plist/plist.h
+++ b/include/plist/plist.h
@@ -1,6 +1,7 @@
1/* 1/**
2 * plist.h 2 * @file plist/plist.h
3 * Main include of libplist 3 * @brief Main include of libplist
4 * \internal
4 * 5 *
5 * Copyright (c) 2008 Jonathan Beck All Rights Reserved. 6 * Copyright (c) 2008 Jonathan Beck All Rights Reserved.
6 * 7 *
@@ -174,7 +175,7 @@ extern "C"
174 /** 175 /**
175 * Return a copy of passed node and it's children 176 * Return a copy of passed node and it's children
176 * 177 *
177 * @param plist the plist to copy 178 * @param node the plist to copy
178 * @return copied plist 179 * @return copied plist
179 */ 180 */
180 PLIST_API plist_t plist_copy(plist_t node); 181 PLIST_API plist_t plist_copy(plist_t node);
@@ -401,6 +402,7 @@ extern "C"
401 * @param node the node 402 * @param node the node
402 * @param val a pointer to an unallocated char buffer. This function allocates the memory, 403 * @param val a pointer to an unallocated char buffer. This function allocates the memory,
403 * caller is responsible for freeing it. 404 * caller is responsible for freeing it.
405 * @param length the length of the buffer
404 */ 406 */
405 PLIST_API void plist_get_data_val(plist_t node, char **val, uint64_t * length); 407 PLIST_API void plist_get_data_val(plist_t node, char **val, uint64_t * length);
406 408