update for HEAD-2003091401
[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 /*
14  * @implemented
15  */
16 int __iscsymf(int c)
17 {
18         return (isalpha(c) || ( c == '_' )) ;
19 }
20
21 /*
22  * @implemented
23  */
24 int __iscsym(int c)
25 {
26         return (isalnum(c) || ( c == '_' )) ;
27 }