This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * client.c | |
| * | |
| * Simple FTP Client | |
| * ==================== | |
| * Connects the server, and sends a command "Get FILENAME" to retrieve | |
| * the file. If the file exists on the server, client retrieves it. | |
| * | |
| * Compile & link : gcc client.c -o client | |
| * Execute : ./client |