createfile.cpp

来自「最新的版本ACE-5.6.8,刚从外文网上搬下,与大家分享.」· C++ 代码 · 共 36 行

CPP
36
字号
// $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);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?