我正试图从文本档案中读到所有内容。 这里是我写的法典。
#include <stdio.h>
#include <stdlib.h>
#define PAGE_SIZE 1024
static char *readcontent(const char *filename)
{
char *fcontent = NULL, c;
int index = 0, pagenum = 1;
FILE *fp;
fp = fopen(filename, "r");
if(fp) {
while((c = getc(fp)) != EOF) {
if(!fcontent || index == PAGE_SIZE) {
fcontent = (char*) realloc(fcontent, PAGE_SIZE * pagenum + 1);
++pagenum;
}
fcontent[index++] = c;
}
fcontent[index] = ;
fclose(fp);
}
return fcontent;
}
static void freecontent(char *content)
{
if(content) {
free(content);
content = NULL;
}
}
这就是使用
int main(int argc, char **argv)
{
char *content;
content = readcontent("filename.txt");
printf("File content : %s
", content);
fflush(stdout);
freecontent(content);
return 0;
}
自2006年以来 我对C来说是新的,我想知道这一法典是否完美? 你们是否看到任何问题/改进?
Compiler使用: 海湾合作委员会。 但是,这一守则可望成为跨平台。
希望得到任何帮助。
<><>Edit>/strong>
此处为附有<编码>的增订代码<>fread和ftell
。
static char *readcontent(const char *filename)
{
char *fcontent = NULL;
int fsize = 0;
FILE *fp;
fp = fopen(filename, "r");
if(fp) {
fseek(fp, 0, SEEK_END);
fsize = ftell(fp);
rewind(fp);
fcontent = (char*) malloc(sizeof(char) * fsize);
fread(fcontent, 1, fsize, fp);
fclose(fp);
}
return fcontent;
}
我想知道这一职能的相对复杂程度如何?