update for HEAD-2003050101
[reactos.git] / lib / crtdll / ctype / toascii.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2
3 #include <msvcrt/ctype.h>
4
5
6 int __toascii(int c)
7 {
8     return((unsigned)(c) & 0x7F);
9 }