xsltlocale.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Summary: Locale handling
  3. * Description: Interfaces for locale handling. Needed for language dependent
  4. * sorting.
  5. *
  6. * Copy: See Copyright for the status of this software.
  7. *
  8. * Author: Nick Wellnhofer
  9. */
  10. #ifndef __XML_XSLTLOCALE_H__
  11. #define __XML_XSLTLOCALE_H__
  12. #include <libxml/xmlstring.h>
  13. #include "xsltexports.h"
  14. #ifdef XSLT_LOCALE_XLOCALE
  15. #include <locale.h>
  16. #include <xlocale.h>
  17. #ifdef __GLIBC__
  18. /*locale_t is defined only if _GNU_SOURCE is defined*/
  19. typedef __locale_t xsltLocale;
  20. #else
  21. typedef locale_t xsltLocale;
  22. #endif
  23. typedef xmlChar xsltLocaleChar;
  24. #elif defined(XSLT_LOCALE_WINAPI)
  25. #include <windows.h>
  26. #include <winnls.h>
  27. typedef LCID xsltLocale;
  28. typedef wchar_t xsltLocaleChar;
  29. #else
  30. /*
  31. * XSLT_LOCALE_NONE:
  32. * Macro indicating that locale are not supported
  33. */
  34. #ifndef XSLT_LOCALE_NONE
  35. #define XSLT_LOCALE_NONE
  36. #endif
  37. typedef void *xsltLocale;
  38. typedef xmlChar xsltLocaleChar;
  39. #endif
  40. XSLTPUBFUN xsltLocale XSLTCALL
  41. xsltNewLocale (const xmlChar *langName);
  42. XSLTPUBFUN void XSLTCALL
  43. xsltFreeLocale (xsltLocale locale);
  44. XSLTPUBFUN xsltLocaleChar * XSLTCALL
  45. xsltStrxfrm (xsltLocale locale,
  46. const xmlChar *string);
  47. XSLTPUBFUN int XSLTCALL
  48. xsltLocaleStrcmp (xsltLocale locale,
  49. const xsltLocaleChar *str1,
  50. const xsltLocaleChar *str2);
  51. XSLTPUBFUN void XSLTCALL
  52. xsltFreeLocales (void);
  53. #endif /* __XML_XSLTLOCALE_H__ */