add ANSI contribution notice
[unix-history] / usr / src / lib / libc / locale / isxdigit.3
.\" Copyright (c) 1991 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.
.\"
.\" %sccs.include.redist.man%
.\"
.\" @(#)isxdigit.3 5.2 (Berkeley) %G%
.\"
.Dd
.Dt ISXDIGIT 3
.Os
.Sh NAME
.Nm isxdigit
.Nd hexadecimal-digit character test
.Sh SYNOPSIS
.Fd #include <ctype.h>
.Ft int
.Fn isxdigit "int c"
.Sh DESCRIPTION
The
.Fn isxdigit
function tests for any hexadecimal-digit character.
.Sh RETURN VALUES
The
.Fn isxdigit
macro returns zero if the character tests false and
returns non-zero if the character tests true.
.Sh SEE ALSO
.Xr isascii 3 ,
.Xr isalnum 3 ,
.Xr isalpha 3 ,
.Xr iscntrl 3 ,
.Xr isdigit 3 ,
.Xr isgraph 3 ,
.Xr islower 3 ,
.Xr isprint 3 ,
.Xr ispunct 3 ,
.Xr isspace 3 ,
.Xr isupper 3 ,
.Xr toascii 3 ,
.Xr tolower 3 ,
.Xr toupper 3 ,
.Xr stdio 3
.Xr ascii 7
.Sh STANDARDS
The
.Fn isxdigit
function conforms to
.St -ansiC .