/usr/include/libxslt
NameSizeModeActions
attributes.h9360644editdlrm
documents.h27370644editdlrm
extensions.h69030644editdlrm
extra.h18400644editdlrm
functions.h20150644editdlrm
imports.h18550644editdlrm
keys.h11620644editdlrm
namespaces.h16730644editdlrm
numbersInternals.h19260644editdlrm
pattern.h19980644editdlrm
preproc.h8970644editdlrm
security.h26770644editdlrm
templates.h22800644editdlrm
transform.h63280644editdlrm
variables.h26580644editdlrm
xslt.h18370644editdlrm
xsltconfig.h34000644editdlrm
xsltexports.h34260644editdlrm
xsltInternals.h569060644editdlrm
xsltlocale.h12050644editdlrm
xsltutils.h83040644editdlrm
Edit: /usr/include/libxslt/xsltlocale.h (1205B)
/* * Summary: Locale handling * Description: Interfaces for locale handling. Needed for language dependent * sorting. * * Copy: See Copyright for the status of this software. * * Author: Nick Wellnhofer */ #ifndef __XML_XSLTLOCALE_H__ #define __XML_XSLTLOCALE_H__ #include #ifdef XSLT_LOCALE_XLOCALE #include #include #ifdef __GLIBC__ /*locale_t is defined only if _GNU_SOURCE is defined*/ typedef __locale_t xsltLocale; #else typedef locale_t xsltLocale; #endif typedef xmlChar xsltLocaleChar; #elif defined(XSLT_LOCALE_WINAPI) #include #include typedef LCID xsltLocale; typedef wchar_t xsltLocaleChar; #else /* * XSLT_LOCALE_NONE: * Macro indicating that locale are not supported */ #ifndef XSLT_LOCALE_NONE #define XSLT_LOCALE_NONE #endif typedef void *xsltLocale; typedef xmlChar xsltLocaleChar; #endif xsltLocale xsltNewLocale(const xmlChar *langName); void xsltFreeLocale(xsltLocale locale); xsltLocaleChar *xsltStrxfrm(xsltLocale locale, const xmlChar *string); int xsltLocaleStrcmp(xsltLocale locale, const xsltLocaleChar *str1, const xsltLocaleChar *str2); #endif /* __XML_XSLTLOCALE_H__ */