Sync this up with ftp.c.

This commit is contained in:
Satoshi Asami 1995-07-31 04:00:01 +00:00
parent d5285ad858
commit e7a7980c25
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9808

View File

@ -17,9 +17,6 @@ FTP_t FtpInit();
int FtpOpen(FTP_t, char *host, char *user, char *passwd);
#define FtpBinary(ftp,bool) { (ftp)->binary = (bool); }
#define FtpPassive(ftp,bool) { (ftp)->passive = (bool); }
#ifndef STANDALONE_FTP
#define FtpDebug(ftp, bool) { (ftp)->fd_debug = (bool); }
#endif
int FtpChdir(FTP_t, char *);
int FtpGet(FTP_t, char *);
int FtpEOF(FTP_t);