eina_strbuf / eina_ustrbuf: add since tags for newly added APIs
authorStefan Schmidt <stefan@osg.samsung.com>
Wed, 15 Feb 2017 10:13:36 +0000 (11:13 +0100)
committerStefan Schmidt <stefan@osg.samsung.com>
Wed, 15 Feb 2017 11:31:50 +0000 (12:31 +0100)
These six have been added in this cycle but missed the since tags.

src/lib/eina/eina_strbuf.h
src/lib/eina/eina_ustrbuf.h

index cd70a3d..7859312 100644 (file)
@@ -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);
 
index f186b2c..82295de 100644 (file)
@@ -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);