资源简介
代码片段和文件信息
/* Chapter 1. Basic cp file copy program. C library Implementation. */
/* cpC file1 file2: Copy file1 to file2. */
#include
#include
#define BUF_SIZE 256
int main (int argc char *argv [])
{
FILE *inFile *outFile;
char rec[BUF_SIZE];
size_t bytesIn bytesOut;
if (argc != 3) {
fprintf (stderr “Usage: cp file1 file2\n“);
return 1;
}
/* In later chapters we‘ll use the more secure functions such as fopen_s
* See http://msdn.microsoft.com/en-us/library/8ef0s5kh%28VS.80%29.aspx
* Note that this project defines the macro _CRT_SECURE_NO_WARNINGS to avoid a warning */
inFile = fopen (argv[1] “rb“);
if (inFile == NULL) {
perror (argv[1]);
return 2;
}
outFile = fopen (argv[2] “wb“);
if (outFile == NULL) {
perror (argv[2]);
fclose(inFile);
return 3;
}
/* Process the input file a record at a time. */
while ((bytesIn = fread (rec 1 BUF_SIZE inFile)) > 0) {
bytesOut = fwrite (rec 1 bytesIn outFi
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2010-09-27 17:43 WSP4_Examples\CHAPTR01\
文件 1187 2010-06-13 09:59 WSP4_Examples\CHAPTR01\cpC.c
文件 503 2010-06-13 09:59 WSP4_Examples\CHAPTR01\cpCF.c
文件 982 2010-06-13 09:59 WSP4_Examples\CHAPTR01\cpU.c
文件 1264 2010-06-13 09:59 WSP4_Examples\CHAPTR01\cpUC.c
文件 1292 2010-06-13 09:59 WSP4_Examples\CHAPTR01\cpW.c
文件 1377 2010-06-13 09:59 WSP4_Examples\CHAPTR01\cpwFA.c
目录 0 2010-12-10 09:42 WSP4_Examples\CHAPTR02\
文件 1532 2010-06-13 09:59 WSP4_Examples\CHAPTR02\Cat.c
文件 843 2010-06-13 09:59 WSP4_Examples\CHAPTR02\cci.C
文件 1778 2010-12-10 09:42 WSP4_Examples\CHAPTR02\cci_f.C
文件 2371 2010-06-13 09:59 WSP4_Examples\CHAPTR02\cci_fFA.C
文件 420 2010-06-13 09:59 WSP4_Examples\CHAPTR02\CD.C
文件 754 2010-06-13 09:59 WSP4_Examples\CHAPTR02\PWD.C
文件 1008 2010-06-13 09:59 WSP4_Examples\CHAPTR02\PWDA.C
目录 0 2010-09-27 17:43 WSP4_Examples\CHAPTR03\
文件 2197 2010-06-13 09:59 WSP4_Examples\CHAPTR03\FreeSpace.c
文件 2202 2010-06-13 09:59 WSP4_Examples\CHAPTR03\GETN.C
文件 7861 2010-06-13 09:59 WSP4_Examples\CHAPTR03\LsREG.c
文件 7319 2010-07-08 14:15 WSP4_Examples\CHAPTR03\lsW.C
文件 7872 2010-06-13 09:59 WSP4_Examples\CHAPTR03\RecordAccess.c
文件 2437 2010-06-13 09:59 WSP4_Examples\CHAPTR03\RecordAccessTestDataGenerate.cpp
文件 3993 2010-06-13 09:59 WSP4_Examples\CHAPTR03\TAIL.C
文件 3213 2010-06-13 09:59 WSP4_Examples\CHAPTR03\TestLock.c
文件 1892 2010-06-13 09:59 WSP4_Examples\CHAPTR03\TOUCH.C
目录 0 2010-09-27 17:43 WSP4_Examples\CHAPTR04\
文件 1828 2010-06-13 09:59 WSP4_Examples\CHAPTR04\CNTRLC.C
文件 5113 2010-08-16 16:53 WSP4_Examples\CHAPTR04\EXCPTION.C
文件 4164 2010-06-13 09:59 WSP4_Examples\CHAPTR04\toupper.c
文件 3746 2010-06-13 09:59 WSP4_Examples\CHAPTR04\toupperX.c
目录 0 2012-01-22 14:50 WSP4_Examples\CHAPTR05\
............此处省略1639个文件信息
- 上一篇:putty 串口工具源码
- 下一篇:zprotect 1.6 脱壳工具()
相关资源
- zprotect 1.6 脱壳工具()
- 汇编:debug和masm等子程序(masm和li<
- DDC/CI Tool
- 计算机体系结构:量化研究方法.第
- Programming Windows 程式开发设计指南(
- 实现图像实时采集(使用BaslerSDK)-
- Notepad++
- directx实现正方体图片映射
- Windows核心编程源码
- c++实现P2PDemo(点对点聊天)
- CVR100UD身份证阅读器二次开发SDK开发说
- windows 串口升级工具(c++源码)
- 三菱数控系统传输软件
- 精通GDI+编程.pdf
- 计算机网络.第五版.谢希仁.pdf
- ntmedsys.sys(c++源码)
- 简单实用的easyhook 源码
- 自制操作系统.docx(附源码地址)
- 操作系统原理及设计原则(Operating
- 基于51单片机的音乐播放器设计.doc
- 计算机体系结构—量化研究方法(第
- 基于C的图书管理系统 毕业设计
- DSS中的RTSPclientLib程序
- c 常用的数据结构 (Errata for Ford/Top
- 将音视频文件转换为rtsp流(live555 媒
- 海康威视demo+播放库
- tftpd32 源代码VC
- 《Learning WebRTC》pdf 高清
- libevent源码深度剖析
- Windows Sockets 规范及应用-Windows网络编
评论
共有 条评论