Merging r37048, r37051, r37052, r37055 from the-real-msvc branch
[reactos.git] / reactos / lib / 3rdparty / mingw / toascii.c
1 /*
2 * toascii.c
3 * This file has no copyright assigned and is placed in the Public Domain.
4 * This file is a part of the mingw-runtime package.
5 * No warranty is given; refer to the file DISCLAIMER within the package.
6 *
7 * Oldnames from ANSI header ctype.h
8 *
9 * Some wrapper functions for those old name functions whose appropriate
10 * equivalents are not simply underscore prefixed.
11 *
12 */
13
14 #include <ctype.h>
15
16 #ifdef toascii
17 #undef toascii
18 #endif
19
20 int
21 toascii (int c)
22 {
23 return __toascii(c);
24 }
25