Remove unreachable code in scm_setter
[bpt/guile.git] / libguile / chars.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
0527e687
DH
3#ifndef SCM_CHARS_H
4#define SCM_CHARS_H
5
904a78f1 6/* Copyright (C) 1995,1996,2000,2001,2004, 2006, 2008, 2009 Free Software Foundation, Inc.
0527e687 7 *
73be1d9e 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.
0527e687 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
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
0527e687 17 *
73be1d9e
MV
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
73be1d9e 22 */
0527e687 23
0f2d19dd
JB
24\f
25
b4309c3c 26#include "libguile/__scm.h"
889975e5
MG
27
28#ifndef SCM_T_WCHAR_DEFINED
29typedef scm_t_int32 scm_t_wchar;
30#define SCM_T_WCHAR_DEFINED
31#endif /* SCM_T_WCHAR_DEFINED */
0f2d19dd
JB
32
33\f
34/* Immediate Characters
35 */
7866a09b 36#define SCM_CHARP(x) (SCM_ITAG8(x) == scm_tc8_char)
904a78f1
MG
37#define SCM_CHAR(x) ((scm_t_wchar)SCM_ITAG8_DATA(x))
38
8ef69629
MG
39/* SCM_MAKE_CHAR maps signed chars (-128 to 127) and unsigned chars (0
40 to 255) to Latin-1 codepoints (0 to 255) while allowing higher
41 codepoints (256 to 1114111) to pass through unchanged.
42
43 This macro evaluates x twice, which may lead to side effects if not
44 used properly. */
45#define SCM_MAKE_CHAR(x) \
46 ((x) <= 1 \
47 ? SCM_MAKE_ITAG8 ((scm_t_bits) (unsigned char) (x), scm_tc8_char) \
4847dc17 48 : SCM_MAKE_ITAG8 ((scm_t_bits) (x), scm_tc8_char))
904a78f1 49
0dcd7e61 50#define SCM_CODEPOINT_DOTTED_CIRCLE (0x25cc)
526ee76a
MG
51#define SCM_CODEPOINT_SURROGATE_START (0xd800)
52#define SCM_CODEPOINT_SURROGATE_END (0xdfff)
0dcd7e61 53#define SCM_CODEPOINT_MAX (0x10ffff)
904a78f1 54#define SCM_IS_UNICODE_CHAR(c) \
526ee76a
MG
55 (((scm_t_wchar) (c) >= 0 \
56 && (scm_t_wchar) (c) < SCM_CODEPOINT_SURROGATE_START) \
57 || ((scm_t_wchar) (c) > SCM_CODEPOINT_SURROGATE_END \
58 && (scm_t_wchar) (c) <= SCM_CODEPOINT_MAX))
7866a09b 59
0f2d19dd
JB
60\f
61
33b001fd
MV
62SCM_API SCM scm_char_p (SCM x);
63SCM_API SCM scm_char_eq_p (SCM x, SCM y);
64SCM_API SCM scm_char_less_p (SCM x, SCM y);
65SCM_API SCM scm_char_leq_p (SCM x, SCM y);
66SCM_API SCM scm_char_gr_p (SCM x, SCM y);
67SCM_API SCM scm_char_geq_p (SCM x, SCM y);
68SCM_API SCM scm_char_ci_eq_p (SCM x, SCM y);
69SCM_API SCM scm_char_ci_less_p (SCM x, SCM y);
70SCM_API SCM scm_char_ci_leq_p (SCM x, SCM y);
71SCM_API SCM scm_char_ci_gr_p (SCM x, SCM y);
72SCM_API SCM scm_char_ci_geq_p (SCM x, SCM y);
73SCM_API SCM scm_char_alphabetic_p (SCM chr);
74SCM_API SCM scm_char_numeric_p (SCM chr);
75SCM_API SCM scm_char_whitespace_p (SCM chr);
76SCM_API SCM scm_char_upper_case_p (SCM chr);
77SCM_API SCM scm_char_lower_case_p (SCM chr);
78SCM_API SCM scm_char_is_both_p (SCM chr);
79SCM_API SCM scm_char_to_integer (SCM chr);
80SCM_API SCM scm_integer_to_char (SCM n);
81SCM_API SCM scm_char_upcase (SCM chr);
82SCM_API SCM scm_char_downcase (SCM chr);
820f33aa 83SCM_API SCM scm_char_titlecase (SCM chr);
0ca3a342 84SCM_API SCM scm_char_general_category (SCM chr);
904a78f1
MG
85SCM_API scm_t_wchar scm_c_upcase (scm_t_wchar c);
86SCM_API scm_t_wchar scm_c_downcase (scm_t_wchar c);
820f33aa 87SCM_API scm_t_wchar scm_c_titlecase (scm_t_wchar c);
904a78f1 88SCM_INTERNAL const char *scm_i_charname (SCM chr);
77332b21
MG
89SCM_INTERNAL SCM scm_i_charname_to_char (const char *charname,
90 size_t charname_len);
102dbb6f 91SCM_INTERNAL void scm_init_chars (void);
0f2d19dd 92
0527e687 93#endif /* SCM_CHARS_H */
89e00824
ML
94
95/*
96 Local Variables:
97 c-file-style: "gnu"
98 End:
99*/