cc65'le uğraştığım son mini projemde CBM SEQ dosyasından veri çekmek için cc65 e-mail grubunda denk geldiğim kodlardan devşirdiğim aşağıdaki fonksiyonu kullanıyorum. Ancak sonradan öğrendim ki while( !feof(ptr) ) kullanımı caiz değilmiş. Aşağıdaki gibi didaktik açıklamalar söz konusu.
EOF is the response you get from an attempted I/O operation. It means that you were trying to read or write something, but when doing so you failed to read or write any data, and instead the end of the input or output was encountered. As long as the I/O operations succeed, you simply cannot know whether further, future operations will succeed. You must always first try the operation and then respond to success or failure.
Okuma sırasında arada hata olursa kodun patlayacağından bahsedilmiş. while(!feof(ptr) && !ferror(ptr)) şeklindeki kullanım bunu çözmez mi? Yoksa multitasking sistemlerde başka bir programın dosyaya ilave yapması gibi durumlar mı sorun oluşturuyor?
void read_tree(uchar * id)
{
uchar *buffer;
uchar *file_name;
FILE *file;
uchar i;
buffer = malloc(1 * sizeof(uchar));
file_name = malloc(8 * sizeof(uchar));
// Dosya ismini hesapla
itoa(id, buffer, 2);
strcpy(file_name,"tdat");
strcat(file_name,buffer);
cprintf("\n\rVeri dosyasi aciliyor...");
_filetype = 's';
if(file = fopen(file_name, "r"))
{
cprintf("\n\rVeriler aliniyor...");
i=0;
while(!feof(file))
{
fread(&node[i], sizeof(struct Node), 1, file);
i++;
}
fclose(file);
cprintf("\n\rOk.");
}