update for HEAD-2003091401
[reactos.git] / lib / crtdll / stdlib / rot.c
index 7a67cb6..a5b4654 100644 (file)
@@ -8,8 +8,12 @@
  *              03/04/99: Created
  */
 
-#include <crtdll/stdlib.h>
+#include <msvcrt/stdlib.h>
+#include <msvcrt/crttypes.h>
 
+/*
+ * @implemented
+ */
 unsigned int _rotl( unsigned int value, int shift )
 {
        int max_bits = sizeof(unsigned int)<<3;
@@ -21,6 +25,9 @@ unsigned int _rotl( unsigned int value, int shift )
        return (value << shift) | (value >> (max_bits-shift));
 }
 
+/*
+ * @implemented
+ */
 unsigned int _rotr( unsigned int value, int shift )
 {
        int max_bits = sizeof(unsigned int)<<3;
@@ -33,6 +40,9 @@ unsigned int _rotr( unsigned int value, int shift )
 }
 
 
+/*
+ * @implemented
+ */
 unsigned long _lrotl( unsigned long value, int shift )
 {
        int max_bits = sizeof(unsigned long)<<3;
@@ -44,6 +54,9 @@ unsigned long _lrotl( unsigned long value, int shift )
        return (value << shift) | (value >> (max_bits-shift));
 }
 
+/*
+ * @implemented
+ */
 unsigned long _lrotr( unsigned long value, int shift )
 {
        int max_bits = sizeof(unsigned long)<<3;