update for HEAD-2003021201
[reactos.git] / lib / msvcrt / ctype / iscsym.c
1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS system libraries
4  * FILE:        lib/msvcrt/ctype/iscsym.c
5  * PURPOSE:     Check for a valid characters in a c symbol
6  * PROGRAMER:   Boudewijn Dekker
7  * UPDATE HISTORY:
8  *              28/12/98: Created
9  */
10 #include <msvcrt/ctype.h>
11
12
13 int __iscsymf(int c)
14 {
15         return (isalpha(c) || ( c == '_' )) ;
16 }
17
18 int __iscsym(int c)
19 {
20         return (isalnum(c) || ( c == '_' )) ;
21 }