source: bootcd/isolinux/syslinux-6.03/gpxe/src/core/bitops.c

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 184 bytes
Line 
1#include <strings.h>
2
3FILE_LICENCE ( GPL2_OR_LATER );
4
5int __flsl ( long x ) {
6        unsigned long value = x;
7        int ls = 0;
8
9        for ( ls = 0 ; value ; ls++ ) {
10                value >>= 1;
11        }
12        return ls;
13}
Note: See TracBrowser for help on using the repository browser.