home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 1
/
FishNMoreVol1.bin
/
more
/
code_examples
/
librar
/
file2lhe.c
< prev
next >
Wrap
Text File
|
1989-02-08
|
427b
|
21 lines
/*--------------------------------------*/
/* */
/* FILE2LHEX(X) */
/* */
/* Reads and returns a number from a */
/* file. The argument is the file desc- */
/* riptor. */
/* */
/*--------------------------------------*/
# include "stdio.h"
long file2lhex(fd)
FILE *fd;
{
int c,d;
long r;
c=getc(fd);
d=getc(fd);
r=(256*c)+d;
return(r);
}