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