1 /* Determine the number of screen columns needed for a string.
2 Copyright (C) 2000-2004 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by Bruno Haible <haible@clisp.cons.org>. */
35 /* Get mbstate_t, mbrtowc(), mbsinit(), wcwidth(). */
37 /* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
39 BSD/OS 4.1 has a bug: <stdio.h> and <time.h> must be included before
46 /* Get iswprint(), iswcntrl(). */
50 #if !defined iswprint && !HAVE_ISWPRINT
51 # define iswprint(wc) 1
53 #if !defined iswcntrl && !HAVE_ISWCNTRL
54 # define iswcntrl(wc) 0
59 # define mbsinit(ps) 1
63 #ifndef HAVE_DECL_WCWIDTH
64 "this configure-time declaration test was not run"
66 #if !HAVE_DECL_WCWIDTH
72 /* wcwidth doesn't exist, so assume all printable characters have
74 # define wcwidth(wc) ((wc) == 0 ? 0 : iswprint (wc) ? 1 : -1)
79 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
80 # define IN_CTYPE_DOMAIN(c) 1
82 # define IN_CTYPE_DOMAIN(c) isascii(c)
84 /* Undefine to protect against the definition in wctype.h of Solaris 2.6. */
86 #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (c))
88 #define ISCNTRL(c) (IN_CTYPE_DOMAIN (c) && iscntrl (c))
90 /* Returns the number of columns needed to represent the multibyte
91 character string pointed to by STRING. If a non-printable character
92 occurs, and MBSW_REJECT_UNPRINTABLE is specified, -1 is returned.
93 With flags = MBSW_REJECT_INVALID | MBSW_REJECT_UNPRINTABLE, this is
94 the multibyte analogue of the wcswidth function. */
96 mbswidth (const char *string
, int flags
)
98 return mbsnwidth (string
, strlen (string
), flags
);
101 /* Returns the number of columns needed to represent the multibyte
102 character string pointed to by STRING of length NBYTES. If a
103 non-printable character occurs, and MBSW_REJECT_UNPRINTABLE is
104 specified, -1 is returned. */
106 mbsnwidth (const char *string
, size_t nbytes
, int flags
)
108 const char *p
= string
;
109 const char *plimit
= p
+ nbytes
;
119 case ' ': case '!': case '"': case '#': case '%':
120 case '&': case '\'': case '(': case ')': case '*':
121 case '+': case ',': case '-': case '.': case '/':
122 case '0': case '1': case '2': case '3': case '4':
123 case '5': case '6': case '7': case '8': case '9':
124 case ':': case ';': case '<': case '=': case '>':
126 case 'A': case 'B': case 'C': case 'D': case 'E':
127 case 'F': case 'G': case 'H': case 'I': case 'J':
128 case 'K': case 'L': case 'M': case 'N': case 'O':
129 case 'P': case 'Q': case 'R': case 'S': case 'T':
130 case 'U': case 'V': case 'W': case 'X': case 'Y':
132 case '[': case '\\': case ']': case '^': case '_':
133 case 'a': case 'b': case 'c': case 'd': case 'e':
134 case 'f': case 'g': case 'h': case 'i': case 'j':
135 case 'k': case 'l': case 'm': case 'n': case 'o':
136 case 'p': case 'q': case 'r': case 's': case 't':
137 case 'u': case 'v': case 'w': case 'x': case 'y':
138 case 'z': case '{': case '|': case '}': case '~':
139 /* These characters are printable ASCII characters. */
144 /* If we have a multibyte sequence, scan it up to its end. */
147 memset (&mbstate
, 0, sizeof mbstate
);
154 bytes
= mbrtowc (&wc
, p
, plimit
- p
, &mbstate
);
156 if (bytes
== (size_t) -1)
157 /* An invalid multibyte sequence was encountered. */
159 if (!(flags
& MBSW_REJECT_INVALID
))
169 if (bytes
== (size_t) -2)
170 /* An incomplete multibyte character at the end. */
172 if (!(flags
& MBSW_REJECT_INVALID
))
183 /* A null wide character was encountered. */
188 /* A printable multibyte character. */
191 /* An unprintable multibyte character. */
192 if (!(flags
& MBSW_REJECT_UNPRINTABLE
))
193 width
+= (iswcntrl (wc
) ? 0 : 1);
199 while (! mbsinit (&mbstate
));
209 unsigned char c
= (unsigned char) *p
++;
213 else if (!(flags
& MBSW_REJECT_UNPRINTABLE
))
214 width
+= (ISCNTRL (c
) ? 0 : 1);