mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-23 16:29:39 +00:00
14 lines
195 B
C
14 lines
195 B
C
/*
|
|
*
|
|
* (c) 2008 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include "libext2.h"
|
|
|
|
int ext2_fstat(ext2_FILE *file, struct stream_stat *buf)
|
|
{
|
|
buf->st_size = file->inode->i_size;
|
|
return 0;
|
|
}
|