home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume38
/
libftp
/
part01
/
FtpGetString.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-13
|
254b
|
16 lines
#include "FtpLibrary.h"
STATUS FtpGetString(FTP *con ,char * str )
{
int i=0;
while ( (str[i]=FtpRead(con)) != '\n' && str[i] != EOF ) i++;
if ( str[i] != EOF )
{
str[i] = '\0';
return i;
}
str[i] = '\0';
return EOF;
}