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