home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
minnie.tuhs.org
/
unixen.tar
/
unixen
/
PDP-11
/
Trees
/
V6
/
usr
/
source
/
iolib
/
wdleng.c
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1975-05-13
|
187 b
|
11 lines
wdleng ()
/* returns number of bits in a machine integer */
/* written so kernighan can tell where he is running */
{
int k, leng;
k = leng = 1;
while (k =<< 1)
leng++;
return (leng);
}