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

VxWorks

开发平台:

C/C++

  1. /* toupper.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 toupper
  21. /*******************************************************************************
  22. *
  23. * toupper - convert a lower-case letter to its upper-case equivalent (ANSI)
  24. *
  25. * This routine converts a lower-case letter to the corresponding upper-case
  26. * letter.
  27. *
  28. * INCLUDE FILES: ctype.h
  29. *
  30. * RETURNS:
  31. * If <c> is a lower-case letter, it returns the upper-case equivalent;
  32. * otherwise, it returns the argument unchanged.
  33. */
  34. int toupper 
  35.     (
  36.     int c       /* character to convert */
  37.     )
  38.     {
  39.     return __toupper(c);
  40.     }