Move some docs inline, and add deprecation information. To see the list of

* glib/gutils.c:
	* glib/gtree.c:
	* glib/gstring.c:
	* glib/gstrfuncs.c:
	* glib/giochannel.c: Move some docs inline, and add deprecation
	information. To see the list of affected functions, grep for
	"Deprecated:".

	* glib/tmpl/strings.sgml:
	* glib/tmpl/string_utils.sgml:
	* glib/tmpl/misc_utils.sgml: Move some docs inline.
This commit is contained in:
Matthias Clasen
2002-11-28 20:46:29 +00:00
parent 7c2ae36588
commit 803bae66a3
16 changed files with 192 additions and 74 deletions

View File

@@ -383,6 +383,17 @@ g_parse_debug_string (const gchar *string,
return result;
}
/**
* g_basename:
* @file_name: the name of the file.
*
* Gets the name of the file without any leading directory components.
* It returns a pointer into the given file name string.
*
* Return value: the name of the file without any leading directory components.
*
* Deprecated: Use g_path_get_basename() instead.
**/
G_CONST_RETURN gchar*
g_basename (const gchar *file_name)
{