- Cleanup the /lib directory, by putting more 3rd-party libs in /3rdparty, and by...
[reactos.git] / reactos / lib / 3rdparty / mingw / iscsym.c
1 /*
2 * iscsym.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 int
17 iscsym (int c)
18 {
19 return __iscsym(c);
20 }