type.c

来自「source of perl for linux application,」· C语言 代码 · 共 49 行

C
49
字号
/************************************************************************	C Source:		type.c*	Instance:		idc_rads_2*	Description:	DOS type Emulation*	%created_by:	smscm %*	%date_created:	Fri Apr 20 19:05:34 2001 %***********************************************************************/#ifndef lintstatic char *_csrc = "@(#) %filespec: type.c~1 %  (%full_filespec: type.c~1:csrc:idc_rads#3 %)";#endif#include <stdio.h>#include <nwfattr.h>#include "clibstuf.h"void main (int argc, char** argv){  FILE* pfile = NULL;  int k;  int thechar;  char* defaultDir;  fnInitGpfGlobals();  SetCurrentNameSpace(NWOS2_NAME_SPACE);  defaultDir = (char *)getenv("PERL_ROOT");  if (!defaultDir || (strlen(defaultDir) == 0))    defaultDir = "sys:\\perl\\scripts";  chdir(defaultDir);  k = 1;  while (k < argc)  {    // open the next file and print it out    pfile = fopen(argv[k],"r");    if (pfile)    {      while ((thechar = getc(pfile)) != EOF)      {        if (thechar != 0x0d)          printf("%c",thechar);      }      fclose (pfile);    }    k++;  }}

⌨️ 快捷键说明

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