www.LinuxHowtos.org
UNICODE_UC
Section: Courier Unicode Library (3)Updated: 07/29/2015
Index Return to Main Contents
NAME
unicode_uc, unicode_lc, unicode_tc, unicode_convert_tocase - unicode uppercase, lowercase, and titlecase character lookupSYNOPSIS
#include <courier-unicode.h>
-
unicode_char unicode_uc(unicode_char c);
- unicode_char unicode_lc(unicode_char c);
- unicode_char unicode_tc(unicode_char c);
- char *unicode_convert_tocase(const char *str, const char *charset, unicode_char (*first_char_func)(uncode_char), unicode_char (*char_func)(uncode_char));
- unicode_char unicode_lc(unicode_char c);
DESCRIPTION
unicode_uc(), unicode_lc(), unicode_tc() return the uppercase, lowercase, or the titlecase equivalent of the unicode character c. If this character does not have an uppercase, lowercase, or a titlecase equivalent, these functions return c, the same character.
unicode_convert_tocase() takes the string str
SEE ALSO
courier-unicode(7), unicode_convert(3), unicode_default_chset(3), unicode_html40ent_lookup(3), unicode_category_lookup(3), unicode_grapheme_break(3), unicode_word_break(3), unicode_line_break(3).
AUTHOR
Sam Varshavchik
- Author