Remove grid gui module
[qi-bootmenu/guyou.git] / fstype / fstype.h
blob3691f7aa868239736eba1058d18b2731a4c2afcc
1 /*
2 * by rmk
4 * Detect filesystem type (on stdin) and output strings for two
5 * environment variables:
6 * FSTYPE - filesystem type
7 * FSSIZE - filesystem size (if known)
9 * We currently detect the fs listed in struct imagetype.
12 #ifndef FSTYPE_H
13 #define FSTYPE_H
15 #define _XOPEN_SOURCE 500
16 #include <unistd.h>
18 int identify_fs(int fd, const char **fstype,
19 unsigned long long *bytes, off_t offset);
21 #endif