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

VxWorks

开发平台:

C/C++

  1. /* iscntrl.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 iscntrl
  21. /*******************************************************************************
  22. *
  23. * iscntrl - test whether a character is a control character (ANSI)
  24. *
  25. * This routine tests whether <c> is a control character.
  26. *
  27. * INCLUDE FILES: ctype.h
  28. *
  29. * RETURNS: Non-zero if and only if <c> is a control character.
  30. */
  31. int iscntrl 
  32.     (
  33.     int c       /* character to test */
  34.     )
  35.     {
  36.     return __iscntrl(c);
  37.     }