|
ReactOS 0.4.16-dev-2279-gc890759
|


Go to the source code of this file.
Typedefs | |
| typedef void * | xsltLocale |
| typedef xmlChar | xsltLocaleChar |
Functions | |
| XSLTPUBFUN void *XSLTCALL | xsltNewLocale (const xmlChar *langName, int lowerFirst) |
| XSLTPUBFUN void XSLTCALL | xsltFreeLocale (void *locale) |
| XSLTPUBFUN xmlChar *XSLTCALL | xsltStrxfrm (void *locale, const xmlChar *string) |
| XSLTPUBFUN void XSLTCALL | xsltFreeLocales (void) |
| XSLTPUBFUN int XSLTCALL | xsltLocaleStrcmp (void *locale, const xmlChar *str1, const xmlChar *str2) |
| typedef void* xsltLocale |
Definition at line 33 of file xsltlocale.h.
| typedef xmlChar xsltLocaleChar |
Definition at line 34 of file xsltlocale.h.
| XSLTPUBFUN void XSLTCALL xsltFreeLocale | ( | void * | locale | ) |
xsltFreeLocale: @locale: the locale to free
Frees a locale created with xsltNewLocale
Definition at line 372 of file xsltlocale.c.
Referenced by xsltNewTransformContext().
| XSLTPUBFUN void XSLTCALL xsltFreeLocales | ( | void | ) |
xsltFreeLocales:
Cleanup function for the locale support on shutdown
Definition at line 93 of file xsltlocale.c.
Referenced by xsltCleanupGlobals().
| XSLTPUBFUN int XSLTCALL xsltLocaleStrcmp | ( | void * | locale, |
| const xmlChar * | str1, | ||
| const xmlChar * | str2 | ||
| ) |
xsltLocaleStrcmp: @locale: unused @str1: a string transformed with xsltStrxfrm @str2: a string transformed with xsltStrxfrm
DEPRECATED: Same as xmlStrcmp.
Compares two strings transformed with xsltStrxfrm.
Returns a value < 0 if str1 sorts before str2, a value > 0 if str1 sorts after str2, 0 if str1 and str2 are equal wrt sorting
Definition at line 482 of file xsltlocale.c.
| XSLTPUBFUN void *XSLTCALL xsltNewLocale | ( | const xmlChar * | languageTag, |
| int lowerFirst | ATTRIBUTE_UNUSED | ||
| ) |
xsltNewLocale: @languageTag: RFC 3066 language tag
Creates a new locale of an opaque system dependent type based on the language tag.
Returns the locale or NULL on error or if no matching locale was found
Definition at line 112 of file xsltlocale.c.
Referenced by xsltNewTransformContext().
xsltStrxfrm: @locale: locale created with xsltNewLocale @string: UTF-8 string to transform
Transforms a string according to locale. The transformed string must be freed with xmlFree.
Returns the transformed string or NULL on error
Definition at line 392 of file xsltlocale.c.
Referenced by xsltNewTransformContext().