diff options
author | Ali Alzyod <ali198724@gmail.com> | 2020-06-22 17:16:02 +0900 |
---|---|---|
committer | WooHyun Jung <wh0705.jung@samsung.com> | 2020-06-22 17:16:02 +0900 |
commit | 1a2811bae4087a1d6078c93c45043c597f256114 (patch) | |
tree | 048a7a1e60cc9cad58ebef04a1c03220a09d2a03 | |
parent | c43630c22aa103798211c82a383213062ca98b82 (diff) |
eina_strbuf_manage_new: update documentation
Reviewers: cedric
Reviewed By: cedric
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Maniphest Tasks: T8757
Differential Revision: https://phab.enlightenment.org/D11991
-rw-r--r-- | src/lib/eina/eina_strbuf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/eina/eina_strbuf.h b/src/lib/eina/eina_strbuf.h index 73d166433d..da94435c2d 100644 --- a/src/lib/eina/eina_strbuf.h +++ b/src/lib/eina/eina_strbuf.h | |||
@@ -89,7 +89,8 @@ EAPI Eina_Strbuf *eina_strbuf_new(void) EINA_MALLOC EINA_WARN_UNUSED_RESULT; | |||
89 | * | 89 | * |
90 | * This function creates a new string buffer. The passed string is used | 90 | * This function creates a new string buffer. The passed string is used |
91 | * directly as the buffer, it's effectively the inverse of | 91 | * directly as the buffer, it's effectively the inverse of |
92 | * eina_strbuf_string_steal(). The passed string must be malloc'd. | 92 | * eina_strbuf_string_steal(). |
93 | * The passed string must be malloc'd, and its ownership will transfer to Eina_Strbuf(do not free it with free()). | ||
93 | * To free the resources, use eina_strbuf_free(). | 94 | * To free the resources, use eina_strbuf_free(). |
94 | * | 95 | * |
95 | * @see eina_strbuf_free() | 96 | * @see eina_strbuf_free() |