Merge pull request #6 from DongwenHuang/master

Update test.c
This commit is contained in:
Kevin Branigan 2015-06-12 14:25:52 -04:00
commit 0fd1435f4b
1 changed files with 1 additions and 1 deletions

2
test.c
View File

@ -44,7 +44,7 @@ void doit(char *text)
void dofile(char *filename)
{
FILE *f=fopen(filename,"rb");fseek(f,0,SEEK_END);long len=ftell(f);fseek(f,0,SEEK_SET);
char *data=(char*)malloc(len+1);fread(data,1,len,f);fclose(f);
char *data=(char*)malloc(len+1);fread(data,1,len,f);data[len]='\0';fclose(f);
doit(data);
free(data);
}