?? createfile.cpp
字號(hào):
// $Id: createfile.cpp 80826 2008-03-04 14:51:23Z wotte $
#include "ace/OS_NS_stdio.h"
#include "ace/OS_NS_string.h"
#include "ace/ACE.h"
ACE_RCSID(Dump_Restore, createfile, "$Id: createfile.cpp 80826 2008-03-04 14:51:23Z wotte $")
int
ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
FILE *infile, *outfile;
char buf[BUFSIZ];
if ((infile = ACE_OS::fopen (argv[1], "r")) == 0)
return -1;
if ((outfile = ACE_OS::fopen (argv[2], "w")) == 0)
return -1;
int count = 0;
while (ACE_OS::fgets (buf, BUFSIZ, infile))
{
buf[ACE_OS::strlen(buf) - 1] = '\0';
ACE_OS::fputs (buf, outfile);
if (count % 2 == 0)
ACE_OS::fputs (" ", outfile);
else
ACE_OS::fputs ("\n", outfile);
count++;
}
ACE_OS::fclose (outfile);
ACE_OS::fclose (infile);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -