update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / iscsym.c
index 0e91f7d..8608062 100644 (file)
 #include <msvcrt/ctype.h>
 
 
+/*
+ * @implemented
+ */
 int __iscsymf(int c)
 {
        return (isalpha(c) || ( c == '_' )) ;
 }
 
+/*
+ * @implemented
+ */
 int __iscsym(int c)
 {
        return (isalnum(c) || ( c == '_' )) ;