EMILE/libiso9660/iso9660_fstat.c

15 lines
196 B
C
Raw Normal View History

2005-11-23 00:10:15 +00:00
/*
*
* (c) 2005 Laurent Vivier <Laurent@lvivier.info>
2005-11-23 00:10:15 +00:00
*
*/
#include "libiso9660.h"
int iso9660_fstat(iso9660_FILE *file, struct stream_stat *buf)
{
buf->st_size = file->size;
return 0;
}