Move the g_locale_get_codeset() up in the header file to correspond to to

Tue May 30 16:01:32 2000  Owen Taylor  <otaylor@redhat.com>

	* glib.h gutils.c: Move the g_locale_get_codeset() up in the
	header file to correspond to to comments about memory
	management. Rename to g_get_codeset() to avoid
	polluting the g_locale_* namespace, which probably
	would have g_locale_get_codeset (GLocale *locale).
	Add a doc comment.
This commit is contained in:
Owen Taylor
2000-05-30 20:05:23 +00:00
committed by Owen Taylor
parent 466305d0ca
commit e0b5636031
12 changed files with 96 additions and 6 deletions

View File

@@ -761,8 +761,16 @@ g_int_hash (gconstpointer v)
return *(const gint*) v;
}
/**
* g_get_codeset:
*
* Get the codeset for the current locale.
*
* Return value: a newly allocated string containing the name
* of the codeset. This string must be freed with g_free().
**/
gchar *
g_locale_get_codeset (void)
g_get_codeset (void)
{
#ifdef HAVE_CODESET
char *result = nl_langinfo (CODESET);