32-way branching in intmap.scm, not 16-way
[bpt/guile.git] / libguile / i18n.h
CommitLineData
9361f762
MV
1/* classes: h_files */
2
3#ifndef SCM_I18N_H
4#define SCM_I18N_H
5
756e8a3a 6/* Copyright (C) 2006, 2008, 2009 Free Software Foundation, Inc.
9361f762
MV
7 *
8 * This library is free software; you can redistribute it and/or
53befeb7
NJ
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.
9361f762 12 *
53befeb7
NJ
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
9361f762
MV
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
53befeb7
NJ
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA
9361f762
MV
22 */
23
24#include "libguile/__scm.h"
25
a2f00b9b 26SCM_API SCM scm_global_locale;
b89c4943
LC
27SCM_API SCM scm_make_locale (SCM category_mask, SCM locale_name, SCM base_locale);
28SCM_API SCM scm_locale_p (SCM obj);
29SCM_API SCM scm_string_locale_lt (SCM s1, SCM s2, SCM locale);
30SCM_API SCM scm_string_locale_gt (SCM s1, SCM s2, SCM locale);
31SCM_API SCM scm_string_locale_ci_lt (SCM s1, SCM s2, SCM locale);
32SCM_API SCM scm_string_locale_ci_gt (SCM s1, SCM s2, SCM locale);
33SCM_API SCM scm_string_locale_ci_eq (SCM s1, SCM s2, SCM locale);
34SCM_API SCM scm_char_locale_lt (SCM c1, SCM c2, SCM locale);
35SCM_API SCM scm_char_locale_gt (SCM c1, SCM c2, SCM locale);
36SCM_API SCM scm_char_locale_ci_lt (SCM c1, SCM c2, SCM locale);
37SCM_API SCM scm_char_locale_ci_gt (SCM c1, SCM c2, SCM locale);
38SCM_API SCM scm_char_locale_ci_eq (SCM c1, SCM c2, SCM locale);
39SCM_API SCM scm_char_locale_upcase (SCM chr, SCM locale);
40SCM_API SCM scm_char_locale_downcase (SCM chr, SCM locale);
820f33aa 41SCM_API SCM scm_char_locale_titlecase (SCM chr, SCM locale);
b89c4943
LC
42SCM_API SCM scm_string_locale_upcase (SCM chr, SCM locale);
43SCM_API SCM scm_string_locale_downcase (SCM chr, SCM locale);
820f33aa 44SCM_API SCM scm_string_locale_titlecase (SCM chr, SCM locale);
b89c4943
LC
45SCM_API SCM scm_locale_string_to_integer (SCM str, SCM base, SCM locale);
46SCM_API SCM scm_locale_string_to_inexact (SCM str, SCM locale);
9361f762 47
756e8a3a
LC
48SCM_INTERNAL SCM scm_nl_langinfo (SCM item, SCM locale);
49
50SCM_INTERNAL void scm_init_i18n (void);
51SCM_INTERNAL void scm_bootstrap_i18n (void);
52
9361f762
MV
53
54#endif /* SCM_I18N_H */
55
56/*
57 Local Variables:
58 c-file-style: "gnu"
59 End:
60*/