EMILE/libext2/ext2_fstat.c

15 lines
226 B
C
Raw Permalink Normal View History

2008-04-12 21:17:49 +00:00
/*
*
* (c) 2008 Laurent Vivier <Laurent@Vivier.EU>
2008-04-12 21:17:49 +00:00
*
*/
#include "libext2.h"
#include "ext2.h"
2008-04-12 21:17:49 +00:00
int ext2_fstat(stream_FILE *file, struct stream_stat *buf)
2008-04-12 21:17:49 +00:00
{
buf->st_size = ((ext2_FILE*)file)->inode->i_size;
2008-04-12 21:17:49 +00:00
return 0;
}