Make g_unichar_combining_class() public. (#453998)

2007-07-19  Behdad Esfahbod  <behdad@gnome.org>

        * glib/glib.symbols:
        * glib/gunicode.h:
        * glib/gunicodeprivate.h:
        * glib/gunidecomp.c (g_unichar_combining_class):
        * glib/guniprop.c (has_more_above):
        Make g_unichar_combining_class() public. (#453998)


svn path=/trunk/; revision=5644
This commit is contained in:
Behdad Esfahbod
2007-07-19 13:46:05 +00:00
committed by Behdad Esfahbod
parent 5fd575191e
commit 613b489b6b
8 changed files with 30 additions and 3 deletions

View File

@@ -47,8 +47,18 @@
? CC_PART2 (((Char) - 0xe0000) >> 8, (Char) & 0xff) \
: 0))
/**
* g_unichar_combining_class:
* @c: a Unicode character
*
* Determines the canonical combining class of a Unicode character.
*
* Return value: the combining class of the character.
*
* Since: 2.14
**/
gint
_g_unichar_combining_class (gunichar uc)
g_unichar_combining_class (gunichar uc)
{
return COMBINING_CLASS (uc);
}