1994-05-27 05:00:24 +00:00
|
|
|
.\" Copyright (c) 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" This code is derived from software contributed to Berkeley by
|
|
|
|
.\" the American National Standards Committee X3, on Information
|
|
|
|
.\" Processing Systems.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 05:00:24 +00:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)isdigit.3 8.1 (Berkeley) 6/4/93
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-27 05:00:24 +00:00
|
|
|
.\"
|
2009-09-04 07:44:58 +00:00
|
|
|
.Dd May 4, 2007
|
1994-05-27 05:00:24 +00:00
|
|
|
.Dt ISDIGIT 3
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
2002-01-09 13:43:31 +00:00
|
|
|
.Nm isdigit, isnumber
|
1994-05-27 05:00:24 +00:00
|
|
|
.Nd decimal-digit character test
|
2000-04-21 09:42:15 +00:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SYNOPSIS
|
2001-10-01 16:09:29 +00:00
|
|
|
.In ctype.h
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft int
|
1997-04-13 12:55:36 +00:00
|
|
|
.Fn isdigit "int c"
|
2002-01-09 13:43:31 +00:00
|
|
|
.Ft int
|
|
|
|
.Fn isnumber "int c"
|
2012-03-13 20:02:41 +00:00
|
|
|
.Ft int
|
|
|
|
.Fn isdigit_l "int c" "locale_t loc"
|
|
|
|
.Ft int
|
|
|
|
.Fn isnumber_l "int c" "locale_t loc"
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Fn isdigit
|
2004-03-30 07:02:04 +00:00
|
|
|
function tests for a decimal digit character.
|
|
|
|
Regardless of locale, this includes the following characters only:
|
2001-11-29 15:23:46 +00:00
|
|
|
.Bl -column \&``0''______ \&``0''______ \&``0''______ \&``0''______ \&``0''______
|
2012-04-07 09:05:30 +00:00
|
|
|
.It "\&``0''" Ta "``1''" Ta "``2''" Ta "``3''" Ta "``4''"
|
|
|
|
.It "\&``5''" Ta "``6''" Ta "``7''" Ta "``8''" Ta "``9''"
|
2001-11-29 15:23:46 +00:00
|
|
|
.El
|
|
|
|
.Pp
|
2004-03-30 07:02:04 +00:00
|
|
|
The
|
|
|
|
.Fn isnumber
|
|
|
|
function behaves similarly to
|
|
|
|
.Fn isdigit ,
|
|
|
|
but may recognize additional characters, depending on the current locale
|
|
|
|
setting.
|
|
|
|
.Pp
|
2005-07-17 04:11:06 +00:00
|
|
|
The value of the argument must be representable as an
|
2005-11-17 13:00:00 +00:00
|
|
|
.Vt "unsigned char"
|
2000-04-11 14:41:37 +00:00
|
|
|
or the value of
|
|
|
|
.Dv EOF .
|
2012-03-13 20:02:41 +00:00
|
|
|
.Pp
|
|
|
|
The _l-suffixed versions take an explicit locale argument, whereas the
|
|
|
|
non-suffixed versions use the current global or per-thread locale.
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh RETURN VALUES
|
|
|
|
The
|
|
|
|
.Fn isdigit
|
2004-03-30 07:02:04 +00:00
|
|
|
and
|
|
|
|
.Fn isnumber
|
|
|
|
functions return zero if the character tests false and
|
2007-05-04 16:01:07 +00:00
|
|
|
return non-zero if the character tests true.
|
2002-10-06 10:15:38 +00:00
|
|
|
.Sh COMPATIBILITY
|
2004-07-29 23:32:41 +00:00
|
|
|
The
|
2002-10-06 10:15:38 +00:00
|
|
|
.Bx 4.4
|
2004-07-29 23:32:41 +00:00
|
|
|
extension of accepting arguments outside of the range of the
|
|
|
|
.Vt "unsigned char"
|
2004-08-21 07:37:08 +00:00
|
|
|
type in locales with large character sets is considered obsolete
|
|
|
|
and may not be supported in future releases.
|
2004-07-29 23:32:41 +00:00
|
|
|
The
|
2002-10-06 10:15:38 +00:00
|
|
|
.Fn iswdigit
|
2004-08-21 07:37:08 +00:00
|
|
|
function should be used instead.
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr ctype 3 ,
|
2002-10-06 10:15:38 +00:00
|
|
|
.Xr iswdigit 3 ,
|
2000-04-11 14:41:37 +00:00
|
|
|
.Xr multibyte 3 ,
|
2012-03-13 20:02:41 +00:00
|
|
|
.Xr xlocale 3 ,
|
1994-05-27 05:00:24 +00:00
|
|
|
.Xr ascii 7
|
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
|
|
|
.Fn isdigit
|
|
|
|
function conforms to
|
2001-02-26 13:23:47 +00:00
|
|
|
.St -isoC .
|
2012-03-13 20:02:41 +00:00
|
|
|
The
|
|
|
|
.Fn isdigit_l
|
|
|
|
function conforms to
|
|
|
|
.St -p1003.1-2008 .
|
2004-03-30 07:02:04 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Fn isnumber
|
|
|
|
function appeared in
|
|
|
|
.Bx 4.4 .
|