Move g_strfreev() docs inline.

2003-07-02  Matthias Clasen  <maclas@gmx.de>

	* glib/tmpl/string_utils.sgml: Move g_strfreev() docs inline.
This commit is contained in:
Matthias Clasen 2003-07-01 22:15:54 +00:00 committed by Matthias Clasen
parent 5c903d283b
commit 8940b82eb4
9 changed files with 55 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2003-07-02 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strfreev): Move docs inline, document behavior
for NULL. (#116439, Steve Chaplin)
2003-06-25 Abigail Brady <morwen@evilmagic.org> 2003-06-25 Abigail Brady <morwen@evilmagic.org>
* glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx * glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx

View File

@ -1,3 +1,8 @@
2003-07-02 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strfreev): Move docs inline, document behavior
for NULL. (#116439, Steve Chaplin)
2003-06-25 Abigail Brady <morwen@evilmagic.org> 2003-06-25 Abigail Brady <morwen@evilmagic.org>
* glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx * glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx

View File

@ -1,3 +1,8 @@
2003-07-02 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strfreev): Move docs inline, document behavior
for NULL. (#116439, Steve Chaplin)
2003-06-25 Abigail Brady <morwen@evilmagic.org> 2003-06-25 Abigail Brady <morwen@evilmagic.org>
* glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx * glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx

View File

@ -1,3 +1,8 @@
2003-07-02 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strfreev): Move docs inline, document behavior
for NULL. (#116439, Steve Chaplin)
2003-06-25 Abigail Brady <morwen@evilmagic.org> 2003-06-25 Abigail Brady <morwen@evilmagic.org>
* glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx * glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx

View File

@ -1,3 +1,8 @@
2003-07-02 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strfreev): Move docs inline, document behavior
for NULL. (#116439, Steve Chaplin)
2003-06-25 Abigail Brady <morwen@evilmagic.org> 2003-06-25 Abigail Brady <morwen@evilmagic.org>
* glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx * glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx

View File

@ -1,3 +1,8 @@
2003-07-02 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strfreev): Move docs inline, document behavior
for NULL. (#116439, Steve Chaplin)
2003-06-25 Abigail Brady <morwen@evilmagic.org> 2003-06-25 Abigail Brady <morwen@evilmagic.org>
* glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx * glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx

View File

@ -1,3 +1,7 @@
2003-07-02 Matthias Clasen <maclas@gmx.de>
* glib/tmpl/string_utils.sgml: Move g_strfreev() docs inline.
2003-06-19 Matthias Clasen <maclas@gmx.de> 2003-06-19 Matthias Clasen <maclas@gmx.de>
* glib/tmpl/misc_utils.sgml: Move g_path_get_basename() docs inline. * glib/tmpl/misc_utils.sgml: Move g_path_get_basename() docs inline.

View File

@ -32,7 +32,7 @@ The returned string should be freed when no longer needed.
</para> </para>
@str: the string to duplicate. @str: the string to duplicate.
@Returns: a newly-allocated copy of @str. @Returns: a newly-allocated copy of @str.
<!-- ##### FUNCTION g_strndup ##### --> <!-- ##### FUNCTION g_strndup ##### -->
@ -277,6 +277,17 @@ returns the length of the allocated string.
@Returns: @Returns:
<!-- ##### FUNCTION g_vasprintf ##### -->
<para>
</para>
@string:
@format:
@args:
@Returns:
<!-- ##### FUNCTION g_printf_string_upper_bound ##### --> <!-- ##### FUNCTION g_printf_string_upper_bound ##### -->
<para> <para>
Calculates the maximum space needed to store the output of the Calculates the maximum space needed to store the output of the
@ -797,10 +808,10 @@ nesting such as <literal>g_ascii_strup (g_strcanon (str, "abc", '?'))</literal>.
<!-- ##### FUNCTION g_strfreev ##### --> <!-- ##### FUNCTION g_strfreev ##### -->
<para> <para>
Frees a %NULL-terminated array of strings, and the array itself.
</para> </para>
@str_array: a %NULL-terminated array of strings to free. @str_array:
<!-- ##### FUNCTION g_strconcat ##### --> <!-- ##### FUNCTION g_strconcat ##### -->

View File

@ -2170,6 +2170,13 @@ g_strsplit (const gchar *string,
return str_array; return str_array;
} }
/**
* 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.
**/
void void
g_strfreev (gchar **str_array) g_strfreev (gchar **str_array)
{ {