EMILE/libiso9660/iso9660_fstat.c

17 lines
275 B
C
Raw Permalink Normal View History

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