Re: Need a hand with a small C conversion
- Posted by scooby Oct 18, 2008
- 1005 views
try these..
positive shift left
global function lshift(atom x, atom shift) return bitshift(x,shift) end function
global function rshift(atom x, atom shift) return bitshift(x,-shift) end function