mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
15 lines
196 B
C
15 lines
196 B
C
/*
|
|
*
|
|
* (c) 2005 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include "libiso9660.h"
|
|
|
|
int iso9660_fstat(iso9660_FILE *file, struct stream_stat *buf)
|
|
{
|
|
buf->st_size = file->size;
|
|
|
|
return 0;
|
|
}
|