mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
17 lines
278 B
C
17 lines
278 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include "libiso9660.h"
|
|
#include "iso9660.h"
|
|
|
|
int iso9660_fstat(stream_FILE *file, struct stream_stat *buf)
|
|
{
|
|
buf->st_size = ((iso9660_FILE*)file)->size;
|
|
buf->st_base = ((iso9660_FILE*)file)->base;
|
|
|
|
return 0;
|
|
}
|