home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MAGAZINE
/
MISC
/
PCTV1N3.ZIP
/
TWOBYTE.C
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1990-05-21
|
376 b
|
16 lines
unsigned Names[ 2000] ; /* 4000 bytes of storage */
int GetNames( FILE *InFile )
{
char StrBuf[ 100 ];
int Count = 0;
while( fgets( StrBuf, 100, InFile ) != EOF )
{
/* save only the segment portion of the address (2 bytes) */
Names[ Count++ ] = FP_SEG( strdup( StrBuf ) );
}
return( Count );
}