update for HEAD-2003021201
[reactos.git] / lib / crtdll / mbstring / ismbpun.c
index eb418e4..0575693 100644 (file)
@@ -1,10 +1,8 @@
 
- //iskana()     :(0xA1 <= c <= 0xDF)
- //iskpun()     :(0xA1 <= c <= 0xA6)
- //iskmoji()    :(0xA7 <= c <= 0xDF)
-#include <crtdll/mbstring.h>
-#include <crtdll/mbctype.h>
-#include <crtdll/ctype.h>
+#include <msvcrt/mbstring.h>
+#include <msvcrt/mbctype.h>
+#include <msvcrt/ctype.h>
+
 
 int _ismbbpunct(unsigned char c)
 {
@@ -12,3 +10,6 @@ int _ismbbpunct(unsigned char c)
        return (ispunct(c) ||  _ismbbkana(c));
 }
 
+ //iskana()     :(0xA1 <= c <= 0xDF)
+ //iskpun()     :(0xA1 <= c <= 0xA6)
+ //iskmoji()    :(0xA7 <= c <= 0xDF)