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