Top |
gchar *
ags_string_util_escape_single_quote (gchar *str
);
Escape all occurence of single quotes.
Since: 3.0.0
guint
ags_strv_length (gchar **str_array
);
Count the number of non-NULL
entries in the array.
Since: 3.0.0
gboolean ags_strv_contains (gchar **str_array
,gchar *str
);
Check occurence of str
within str_array
str_array |
the string vector. |
[element-type utf8][array zero-terminated=1][transfer none] |
str |
the string to match |
Since: 3.0.0
gint ags_strv_index (gchar **str_array
,gchar *str
);
Check by comparing str
against str_array
items.
str_array |
the string vector. |
[element-type utf8][array zero-terminated=1][transfer none] |
str |
the string to match |
Since: 3.0.0
gboolean ags_strv_equal (gchar **strv1
,gchar **strv2
);
Check strv1
and strv2
to be equal. The arrays don't have to be
sorted.
Since: 3.2.1