我有一个char
来自 的fgets
,我想知道如何将它转换为char*
.
我确信这已经发布过,但我找不到一个正在做我想做的事。任何答案表示赞赏。
编辑:这是代码。
char *filename = "file.txt";
FILE *file = fopen(filename, "r");
if(file != NULL) {
char line[260];
char *fl;
while(fgets(line, sizeof line, file) != NULL) {
// here I combine some strings with the 'line' variable.
str_replace(line, "\"", "\"\""); // A custom function, but it only takes char*'s.
}
printf(fl);
printf("\n");
} else {
printf(" -- *ERROR* Couldn't open file.\n");
}