Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9155 → Rev 9156

/programs/develop/ktcc/trunk/libc.obj/source/stdio/fread.c
12,6 → 12,12
return 0;
}
if(size<=0 || nmemb<=0){
errno = EINVAL;
stream->error=errno;
return 0;
}
if(stream==stdin){
con_init();
con_gets((char*)ptr, bytes_count+1);
25,14 → 31,17
//debug_printf("Ungetc: %x\n", ((char*) ptr)[0]);
}
unsigned status = _ksys_file_read_file(stream->name, stream->position, bytes_count, ptr , &bytes_read);
if (status) {
if (status != KSYS_FS_ERR_SUCCESS) {
if(status == KSYS_FS_ERR_EOF){
stream->eof=1;
}else{
errno = EIO;
stream->error = errno;
return 0;
}else {
}
}
stream->position+=bytes_read;
}
}
return bytes_read/size;
}
return bytes_read;
}