lbitshft.c File Reference

#include "f2c.h"

Include dependency graph for lbitshft.c:

Go to the source code of this file.

Functions

integer lbit_shift (integer a, integer b)


Function Documentation

integer lbit_shift ( integer  a,
integer  b 
)

Definition at line 10 of file lbitshft.c.

00012 {
00013         return b >= 0 ? a << b : (integer)((uinteger)a >> -b);
00014         }


Generated on Sun Mar 4 15:04:49 2007 for Scilab [trunk] by  doxygen 1.5.1