:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / crtdll / ctype / toascii.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2
3 #include <crtdll/ctype.h>
4
5
6 int __toascii(int c)
7 {
8   return ((unsigned)(c) & 0x7F );
9 }