Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Borland C++ 2.x ( with Turbo C ) - <b>_lrotl() rotate a long value to the left</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _lrotl()                Rotate a Long Value to the Left

 #include   <stdlib.h>

 unsigned long _lrotl(value,count);
 unsigned long value;
 int        count;

    _lrotl() rotates an unsigned long 'value' to the left by 'count'
    bits.

       Returns:     The rotated value.

   -------------------------------- Example ---------------------------------

    The following statements rotate 'val' by 'count' bits.

           #include <stdlib.h>

           main()
           {
               unsigned long val = 0xFFFF;
               int count = 1;

               printf("rotate %08lX %d bit(s) = %08lX \n",
                       val,count,_lrotl(val,count));
           }


See Also: _lrotr() _rotr() _rotl()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson