Whamcloud - gitweb
e2freefrag: Clarify e2freefrag's messages
[tools/e2fsprogs.git] / misc / fsck.h
index 9d9f6ea..8a0f70e 100644 (file)
 #define const
 #endif
 
+#ifdef __GNUC__
+#define FSCK_ATTR(x) __attribute__(x)
+#else
+#define FSCK_ATTR(x)
+#endif
+
+
 #ifndef DEFAULT_FSTYPE
 #define DEFAULT_FSTYPE "ext2"
 #endif
@@ -59,5 +66,8 @@ struct fsck_instance {
        struct fsck_instance *next;
 };
 
-extern char *base_device(char *device);
-extern char *string_copy(const char *s);
+extern char *base_device(const char *device);
+extern const char *identify_fs(const char *fs_name, const char *fs_types);
+
+/* ismounted.h */
+extern int is_mounted(const char *file);