update for HEAD-2003091401
[reactos.git] / lib / crtdll / mbstring / mbsupr.c
index 90e5b0f..3ac3e61 100644 (file)
@@ -7,8 +7,8 @@
  * UPDATE HISTORY:
  *              12/04/99: Created
  */
-#include <crtdll/mbstring.h>
-#include <crtdll/ctype.h>
+#include <msvcrt/mbstring.h>
+#include <msvcrt/ctype.h>
 
 unsigned int _mbbtoupper(unsigned int c)
 {
@@ -21,6 +21,9 @@ unsigned int _mbbtoupper(unsigned int c)
 // codepage 952
 #define CASE_DIFF (0x8281 - 0x8260)
 
+/*
+ * @implemented
+ */
 unsigned int _mbctoupper(unsigned int c)
 {
 
@@ -35,6 +38,9 @@ unsigned int _mbctoupper(unsigned int c)
        return 0;
 }
 
+/*
+ * @implemented
+ */
 unsigned char * _mbsupr(unsigned char *x)
 {
        unsigned char  *y=x;