加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.c 251 Bytes
一键复制 编辑 原始数据 按行查看 历史
锅锅 提交于 2021-07-27 17:53 . 更新
#include <stdio.h>
#include "http_download.h"
int main(int argc, char const *argv[])
{
if (argc == 1)
{
printf("Input a valid URL \n");
exit(0);
}
else
{
http_download_file(argv[1]);
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化