#include <stdio.h>
#include <errno.h>
#include <libfget.h>
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: <test_name> URL\n");
exit(1);
}
TEST(argv[1]);
exit(0);
}