function()
{
FILE *ptr;
ptr = fileopen(file1.txt)
fprint(ptr, some text) //print to file 1
if(second file needed)
{
ptr = fileopen(file2.txt) //open a second file, assign to same file pointer
fprint(ptr, some text) //print to file 2 not working here?
}
}
РЕДАКТИРОВАТЬ:
Не печатать во второй файл ... Однако fprint () не возвращает отрицательное значение.