OLD | NEW |
1 /* | 1 /* |
2 * Summary: Locale handling | 2 * Summary: Locale handling |
3 * Description: Interfaces for locale handling. Needed for language dependent | 3 * Description: Interfaces for locale handling. Needed for language dependent |
4 * sorting. | 4 * sorting. |
5 * | 5 * |
6 * Copy: See Copyright for the status of this software. | 6 * Copy: See Copyright for the status of this software. |
7 * | 7 * |
8 * Author: Nick Wellnhofer | 8 * Author: Nick Wellnhofer |
9 */ | 9 */ |
10 | 10 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 | 46 |
47 typedef void *xsltLocale; | 47 typedef void *xsltLocale; |
48 typedef xmlChar xsltLocaleChar; | 48 typedef xmlChar xsltLocaleChar; |
49 | 49 |
50 #endif | 50 #endif |
51 | 51 |
52 xsltLocale xsltNewLocale(const xmlChar *langName); | 52 xsltLocale xsltNewLocale(const xmlChar *langName); |
53 void xsltFreeLocale(xsltLocale locale); | 53 void xsltFreeLocale(xsltLocale locale); |
54 xsltLocaleChar *xsltStrxfrm(xsltLocale locale, const xmlChar *string); | 54 xsltLocaleChar *xsltStrxfrm(xsltLocale locale, const xmlChar *string); |
55 int xsltLocaleStrcmp(xsltLocale locale, const xsltLocaleChar *str1, const xsltLo
caleChar *str2); | 55 int xsltLocaleStrcmp(xsltLocale locale, const xsltLocaleChar *str1, const xsltLo
caleChar *str2); |
| 56 void xsltFreeLocales(void); |
56 | 57 |
57 #endif /* __XML_XSLTLOCALE_H__ */ | 58 #endif /* __XML_XSLTLOCALE_H__ */ |
OLD | NEW |