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

VxWorks

开发平台:

C/C++

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