Example: ftp_logout_ex

In the following example, the ftp_logout_ex function logs out of the FTP server ftp.merc-int.com for the session ftp.

    FTP pFTP; 
    // Logon to the FTP server 
    ftp_logon_ex (&pFTP, "FTP", "URL=ftp://ftp.abc.com",LAST ); 
    // Logout from the FTP server 
    ftp_logout_ex (&pFTP);