#include #include #include struct ftp_url ftpurl; FTP *ftp = NULL; /* prototype to avoid confusing the compiler */ void TEST(char *); int main(int argc, char *argv[]) { if (argc != 2) { fprintf(stderr, "Usage: URL\n"); exit(1); } TEST(argv[1]); exit(0); }