我正在研究 TTCN-3(测试和测试控制符号)脚本语言。我想为此代码文件准备指南检查器。
为此,我想将 TTCN-3 脚本文件(诸如 file.ttcn 之类的东西)的行一一读取到缓冲区中。但对我来说 fopen / sopen / open / fgetc / fscanf 无法正常工作并且无法正确读取文件。它给出了NULL。有什么办法可以将它的字符读入缓冲区。我认为 C 不能读取超过三个扩展字符的文件(如 .ttcn)。如果我的假设是错误的,请原谅我。
我的环境是 Windows 上的 Turbo C。
编辑:
是的,我也检查了这些错误,但它们给出了 read() 的未知错误,并且不存在这样的文件或目录。
我的代码如下
#include <errno.h>
#include <io.h>
#include <fcntl.h>
#include <sys\stat.h>
#include <process.h>
#include <share.h>
#include <stdio.h>
int main(void)
{
int handle;
int status;
int i=0;
char ch;
FILE *fp;
char *buffer;
char *buf;
clrscr();
handle = sopen("c:\\tc\\bin\\hi.ttcn", O_BINARY, SH_DENYNONE, S_IREAD);
/这里甚至我使用了 O_TEXT 和其他/
if (!handle)
{
printf("sopen failed\n");
// exit(1);
}
printf("\nObtained string %s @",buf);
close(handle);
fp=fopen("c:\\tc\\bin\\hi.ttcn","r"); \\sorry for the old version of one slash
if(fp==NULL) \\I was doing it with argv[1] for opening
{ \\user given file name
printf("\nCannot open file");
}
ch=fgetc(fp);
i=0;
while(i<10)
{
printf("\ncharacter is %c %d",ch,ch);
i++; //Here I wanted to take characters into
ch=fgetc(fp); //buffer
}
getch();
return 0;
}