摘要: #include int main(int argc,char *argv[]) { FILE *src_fp,*des_fp; int src_ret; char buf[128]={0}; if(argc != 3) { printf("please input paramester\n"); return -1; ... 阅读全文
posted @ 2016-05-20 15:30 启云 阅读(206) 评论(0) 推荐(0) 编辑
摘要: #include #include int main(int argc,char *argv[]) { FILE *src_fp,*des_fp; int src_ret; if(argc<3) { printf("please input parameter"); return -1; } //打开源文件 ... 阅读全文
posted @ 2016-05-20 15:28 启云 阅读(310) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include int main(int argc,char *argv[]) { int src_ret,des_ret; char buf[128]={0}; int src_fd,des_fd; //判断输入的参数的个数 if(argc<3) { printf("p... 阅读全文
posted @ 2016-05-20 15:28 启云 阅读(251) 评论(0) 推荐(0) 编辑
摘要: #include int main(int argc,char *argv[]) { FILE *src_fp,*des_fp; char buf[128]={0}; if(argc != 3) { printf("please input parameter\n"); return -1; } //... 阅读全文
posted @ 2016-05-20 15:26 启云 阅读(179) 评论(0) 推荐(0) 编辑