

isalnum()             ctype Macro (ctype.h)             isalnum()




Check if a character is a number or letter

#iinncclluuddee <ccttyyppee.hh>
iinntt iissaallnnuumm(_c) iinntt _c;

isalnum tests  whether the argument _c  is alphanumeric (00-99, AA-ZZ,
or aa-zz).   It returns  a number  other than zero  if _c is  of the
desired type, and  zero if it is not.  isalnum  assumes that _c is
an ASCII character or EOF.

***** Example *****

For an example of how to use this macro, see the entry for ctype.

***** See Also *****

ASCII, ctype







































COHERENT Lexicon                                           Page 1


