########################################################################
Version: FtpLib_V1.0.00
Date: 2008/12/3
########################################################################
The testFTP.c is an example file of using wrapped API of FtpLib.
It is executed to read a struct listed below, then, fills the parameters and calls APIs.

It calls FtpConnect() to connect & login to server first.
Then, it calls FtpNewDir to create a new folder in server.
It also calls FtpOpen(), FtpPutDataFromMem, and FtpClose to put file in server from memory.
Finally, it calls FtpDisconnect() to quit the connection from server.

   struct ftpCnt {
      char host[64];          //host name or IP address
      char user[32];          //user name
      char pass[32];          //password
      unsigned int port;      //port
      int mode;               //transfer mode 
      char destfd[128];       //destination folder
      char destfnm[128];      //destination file name
   };
########################################################################
