Adapt GDB integration to newest patches
[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, 2008, 2009 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 License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful, but
14 * 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
21 * 02110-1301 USA
22 */
23
24 #include "libguile/__scm.h"
25
26 SCM_API SCM scm_global_locale;
27 SCM_API SCM scm_make_locale (SCM category_mask, SCM locale_name, SCM base_locale);
28 SCM_API SCM scm_locale_p (SCM obj);
29 SCM_API SCM scm_string_locale_lt (SCM s1, SCM s2, SCM locale);
30 SCM_API SCM scm_string_locale_gt (SCM s1, SCM s2, SCM locale);
31 SCM_API SCM scm_string_locale_ci_lt (SCM s1, SCM s2, SCM locale);
32 SCM_API SCM scm_string_locale_ci_gt (SCM s1, SCM s2, SCM locale);
33 SCM_API SCM scm_string_locale_ci_eq (SCM s1, SCM s2, SCM locale);
34 SCM_API SCM scm_char_locale_lt (SCM c1, SCM c2, SCM locale);
35 SCM_API SCM scm_char_locale_gt (SCM c1, SCM c2, SCM locale);
36 SCM_API SCM scm_char_locale_ci_lt (SCM c1, SCM c2, SCM locale);
37 SCM_API SCM scm_char_locale_ci_gt (SCM c1, SCM c2, SCM locale);
38 SCM_API SCM scm_char_locale_ci_eq (SCM c1, SCM c2, SCM locale);
39 SCM_API SCM scm_char_locale_upcase (SCM chr, SCM locale);
40 SCM_API SCM scm_char_locale_downcase (SCM chr, SCM locale);
41 SCM_API SCM scm_char_locale_titlecase (SCM chr, SCM locale);
42 SCM_API SCM scm_string_locale_upcase (SCM chr, SCM locale);
43 SCM_API SCM scm_string_locale_downcase (SCM chr, SCM locale);
44 SCM_API SCM scm_string_locale_titlecase (SCM chr, SCM locale);
45 SCM_API SCM scm_locale_string_to_integer (SCM str, SCM base, SCM locale);
46 SCM_API SCM scm_locale_string_to_inexact (SCM str, SCM locale);
47
48 SCM_INTERNAL SCM scm_nl_langinfo (SCM item, SCM locale);
49
50 SCM_INTERNAL void scm_init_i18n (void);
51 SCM_INTERNAL void scm_bootstrap_i18n (void);
52
53
54 #endif /* SCM_I18N_H */
55
56 /*
57 Local Variables:
58 c-file-style: "gnu"
59 End:
60 */