stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=539bc7552bbbf539944d9bed34fdaddd1557608b

commit 539bc7552bbbf539944d9bed34fdaddd1557608b
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Wed Feb 15 11:13:36 2017 +0100

    eina_strbuf / eina_ustrbuf: add since tags for newly added APIs
    
    These six have been added in this cycle but missed the since tags.
---
 src/lib/eina/eina_strbuf.h  | 6 ++++++
 src/lib/eina/eina_ustrbuf.h | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/src/lib/eina/eina_strbuf.h b/src/lib/eina/eina_strbuf.h
index cd70a3d..7859312 100644
--- a/src/lib/eina/eina_strbuf.h
+++ b/src/lib/eina/eina_strbuf.h
@@ -235,6 +235,8 @@ EAPI Eina_Bool eina_strbuf_append_length(Eina_Strbuf *buf, 
const char *str, size
  *
  * This function appends @p slice to @p buf. If @p buf can't append
  * it, #EINA_FALSE is returned, otherwise #EINA_TRUE is returned.
+ *
+ * @since 1.19.0
  */
 EAPI Eina_Bool eina_strbuf_append_slice(Eina_Strbuf *buf, const Eina_Slice 
slice) EINA_ARG_NONNULL(1);
 
@@ -381,6 +383,8 @@ EAPI Eina_Bool eina_strbuf_insert_length(Eina_Strbuf *buf, 
const char *str, size
  * This function inserts @p slice to @p buf at position @p pos. If @p
  * buf can't insert it, #EINA_FALSE is returned, otherwise #EINA_TRUE
  * is returned.
+ *
+ * @since 1.19.0
  */
 EAPI Eina_Bool eina_strbuf_insert_slice(Eina_Strbuf *buf, const Eina_Slice 
slice, size_t pos) EINA_ARG_NONNULL(1);
 
@@ -715,6 +719,8 @@ EAPI Eina_Slice eina_strbuf_slice_get(const Eina_Strbuf 
*buf) EINA_WARN_UNUSED_R
  * @return a read-write slice for the current contents. It may become
  *         invalid as soon as the @a buf is changed with calls such as
  *         eina_strbuf_append(), eina_strbuf_remove()
+ *
+ * @since 1.19.0
  */
 EAPI Eina_Rw_Slice eina_strbuf_rw_slice_get(const Eina_Strbuf *buf) 
EINA_WARN_UNUSED_RESULT EINA_ARG_NONNULL(1);
 
diff --git a/src/lib/eina/eina_ustrbuf.h b/src/lib/eina/eina_ustrbuf.h
index f186b2c..82295de8 100644
--- a/src/lib/eina/eina_ustrbuf.h
+++ b/src/lib/eina/eina_ustrbuf.h
@@ -186,6 +186,8 @@ EAPI Eina_Bool eina_ustrbuf_append_length(Eina_UStrbuf 
*buf, const Eina_Unicode
  *
  * This function appends @p slice to @p buf. If @p buf can't append
  * it, #EINA_FALSE is returned, otherwise #EINA_TRUE is returned.
+ *
+ * @since 1.19.0
  */
 EAPI Eina_Bool eina_ustrbuf_append_slice(Eina_UStrbuf *buf, const Eina_Slice 
slice) EINA_ARG_NONNULL(1);
 
@@ -286,6 +288,8 @@ EAPI Eina_Bool eina_ustrbuf_insert_length(Eina_UStrbuf 
*buf, const Eina_Unicode
  * This function inserts @p slice to @p buf at position @p pos. If @p
  * buf can't insert it, #EINA_FALSE is returned, otherwise #EINA_TRUE
  * is returned.
+ *
+ * @since 1.19.0
  */
 EAPI Eina_Bool eina_ustrbuf_insert_slice(Eina_UStrbuf *buf, const Eina_Slice 
slice, size_t pos) EINA_ARG_NONNULL(1);
 
@@ -465,6 +469,8 @@ EAPI Eina_Slice eina_ustrbuf_slice_get(const Eina_UStrbuf 
*buf) EINA_WARN_UNUSED
  * @return a read-write slice for the current contents. It may become
  *         invalid as soon as the @a buf is changed with calls such as
  *         eina_ustrbuf_append(), eina_ustrbuf_remove()
+ *
+ * @since 1.19.0
  */
 EAPI Eina_Rw_Slice eina_ustrbuf_rw_slice_get(const Eina_UStrbuf *buf) 
EINA_WARN_UNUSED_RESULT EINA_ARG_NONNULL(1);
 

-- 


Reply via email to