summaryrefslogtreecommitdiff
path: root/gir/glib-2.0.c
diff options
context:
space:
mode:
Diffstat (limited to 'gir/glib-2.0.c')
-rw-r--r--gir/glib-2.0.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/gir/glib-2.0.c b/gir/glib-2.0.c
index 287f39d3..7d8a5833 100644
--- a/gir/glib-2.0.c
+++ b/gir/glib-2.0.c
@@ -27231,8 +27231,10 @@
* g_strfreev:
* @str_array: a %NULL-terminated array of strings to free
*
- * Frees a %NULL-terminated array of strings, and the array itself.
- * If called on a %NULL value, g_strfreev() simply returns.
+ * Frees a %NULL-terminated array of strings, as well as each
+ * string it contains.
+ *
+ * If @str_array is %NULL, this function simply returns.
*/
@@ -28182,6 +28184,18 @@
/**
+ * g_strv_contains:
+ * @strv: a %NULL-terminated array of strings
+ * @str: a string
+ *
+ * Checks if @strv contains @str. @strv must not be %NULL.
+ *
+ * Returns: %TRUE if @str is an element of @strv, according to g_str_equal().
+ * Since: 2.44
+ */
+
+
+/**
* g_strv_length:
* @str_array: a %NULL-terminated array of strings
*