isalnum.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* isalnum.c - character classification */
  2. /* Copyright 1992-1993 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01e,03mar93,jdi  more documentation cleanup for 5.1.
  7. 01d,07feb93,jdi  documentation cleanup for 5.1.
  8. 01c,20sep92,smb  documentation additions.
  9. 01b,04jul92,smb  added vxWorks.h and extra documentation
  10. 01a,24mar92,smb  written
  11. */
  12. /*
  13. DESCRIPTION
  14. INCLUDE FILE: ctype.h
  15. SEE ALSO: American National Standard X3.159-1989
  16. NOMANUAL
  17. */
  18. #include "vxWorks.h"
  19. #include "ctype.h"
  20. #undef isalnum
  21. /*******************************************************************************
  22. *
  23. * isalnum - test whether a character is alphanumeric (ANSI)
  24. *
  25. * This routine tests whether <c> is a character for which isalpha() or
  26. * isdigit() returns true.
  27. *
  28. * INCLUDE FILES: ctype.h
  29. *
  30. * RETURNS: Non-zero if and only if <c> is alphanumeric.
  31. */
  32. int isalnum 
  33.     (
  34.     int c       /* character to test */
  35.     )
  36.     {
  37.     return __isalnum(c);
  38.     }