home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 1
/
FishNMoreVol1.bin
/
more
/
code_examples
/
librar
/
sfile2he.c
< prev
next >
Wrap
Text File
|
1989-02-08
|
476b
|
22 lines
/*--------------------------------------*/
/* */
/* SFILE2HEX(X) */
/* */
/* Reads and returns a number from a */
/* file. The argument is the file desc- */
/* riptor. */
/* */
/* Written by John Callicotte */
/* */
/*--------------------------------------*/
# include "stdio.h"
sfile2hex(fd)
FILE *fd;
{
int c,d,e;
c=scram(getc(fd));
d=scram(getc(fd));
e=256*c+d;
return(e);
}