MSC: unsigned _rotl( unsigned value, int shift )

MSC: unsigned _rotr( unsigned value, int shift )


	- prototype in stdlib.h

	- rotates value by 'n' bits left or right
	- returns rotated value

	- see	 _lrotl()   _lrotr()