i18n.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* classes: h_files */
  2. #ifndef SCM_I18N_H
  3. #define SCM_I18N_H
  4. /* Copyright (C) 2006, 2008, 2009 Free Software Foundation, Inc.
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public License
  8. * as published by the Free Software Foundation; either version 3 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  19. * 02110-1301 USA
  20. */
  21. #include "libguile/__scm.h"
  22. SCM_API SCM scm_global_locale;
  23. SCM_API SCM scm_make_locale (SCM category_mask, SCM locale_name, SCM base_locale);
  24. SCM_API SCM scm_locale_p (SCM obj);
  25. SCM_API SCM scm_string_locale_lt (SCM s1, SCM s2, SCM locale);
  26. SCM_API SCM scm_string_locale_gt (SCM s1, SCM s2, SCM locale);
  27. SCM_API SCM scm_string_locale_ci_lt (SCM s1, SCM s2, SCM locale);
  28. SCM_API SCM scm_string_locale_ci_gt (SCM s1, SCM s2, SCM locale);
  29. SCM_API SCM scm_string_locale_ci_eq (SCM s1, SCM s2, SCM locale);
  30. SCM_API SCM scm_char_locale_lt (SCM c1, SCM c2, SCM locale);
  31. SCM_API SCM scm_char_locale_gt (SCM c1, SCM c2, SCM locale);
  32. SCM_API SCM scm_char_locale_ci_lt (SCM c1, SCM c2, SCM locale);
  33. SCM_API SCM scm_char_locale_ci_gt (SCM c1, SCM c2, SCM locale);
  34. SCM_API SCM scm_char_locale_ci_eq (SCM c1, SCM c2, SCM locale);
  35. SCM_API SCM scm_char_locale_upcase (SCM chr, SCM locale);
  36. SCM_API SCM scm_char_locale_downcase (SCM chr, SCM locale);
  37. SCM_API SCM scm_char_locale_titlecase (SCM chr, SCM locale);
  38. SCM_API SCM scm_string_locale_upcase (SCM chr, SCM locale);
  39. SCM_API SCM scm_string_locale_downcase (SCM chr, SCM locale);
  40. SCM_API SCM scm_string_locale_titlecase (SCM chr, SCM locale);
  41. SCM_API SCM scm_locale_string_to_integer (SCM str, SCM base, SCM locale);
  42. SCM_API SCM scm_locale_string_to_inexact (SCM str, SCM locale);
  43. SCM_INTERNAL SCM scm_nl_langinfo (SCM item, SCM locale);
  44. SCM_INTERNAL void scm_init_i18n (void);
  45. SCM_INTERNAL void scm_bootstrap_i18n (void);
  46. #endif /* SCM_I18N_H */
  47. /*
  48. Local Variables:
  49. c-file-style: "gnu"
  50. End:
  51. */