mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-29 04:14:11 +02:00
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:
committed by
Behdad Esfahbod
parent
5fd575191e
commit
613b489b6b
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user