home *** CD-ROM | disk | FTP | other *** search
/ Programming Win32 Under the API / ProgrammingWin32UnderTheApiPatVillani.iso / src / mingw-runtime-19991107 / mingw / ctype_old.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-04  |  972 b   |  53 lines

  1. /*
  2.  * ctype_old.c
  3.  *
  4.  * Oldnames from ANSI header ctype.h
  5.  *
  6.  * Some wrapper functions for those old name functions whose appropriate
  7.  * equivalents are not simply underscore prefixed.
  8.  *
  9.  * Contributors:
  10.  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
  11.  *
  12.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  13.  *
  14.  *  This source code is offered for use in the public domain. You may
  15.  *  use, modify or distribute it freely.
  16.  *
  17.  *  This code is distributed in the hope that it will be useful but
  18.  *  WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
  19.  *  DISCLAMED. This includes but is not limited to warrenties of
  20.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  21.  *
  22.  * $Revision: 1.1 $
  23.  * $Author: colin $
  24.  * $Date: 1997/07/03 03:52:00 $
  25.  *
  26.  */
  27.  
  28. #include <ctype.h>
  29.  
  30. int
  31. isascii (int c)
  32. {
  33.     return __isascii(c);
  34. }
  35.  
  36. int
  37. toascii (int c)
  38. {
  39.     return __toascii(c);
  40. }
  41.  
  42. int
  43. iscsymf (int c)
  44. {
  45.     return __iscsymf(c);
  46. }
  47.  
  48. int
  49. iscsym (int c)
  50. {
  51.     return __iscsym(c);
  52. }
  53.