diff options
Diffstat (limited to 'e2fsprogs/e2p/ps.c')
-rw-r--r-- | e2fsprogs/e2p/ps.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/e2fsprogs/e2p/ps.c b/e2fsprogs/e2p/ps.c new file mode 100644 index 000000000..a6b4099db --- /dev/null +++ b/e2fsprogs/e2p/ps.c | |||
@@ -0,0 +1,27 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* | ||
3 | * ps.c - Print filesystem state | ||
4 | * | ||
5 | * Copyright (C) 1993, 1994 Remy Card <card@masi.ibp.fr> | ||
6 | * Laboratoire MASI, Institut Blaise Pascal | ||
7 | * Universite Pierre et Marie Curie (Paris VI) | ||
8 | * | ||
9 | * This file can be redistributed under the terms of the GNU Library General | ||
10 | * Public License | ||
11 | */ | ||
12 | |||
13 | /* | ||
14 | * History: | ||
15 | * 93/12/22 - Creation | ||
16 | */ | ||
17 | |||
18 | #include <stdio.h> | ||
19 | |||
20 | #include "e2p.h" | ||
21 | |||
22 | void print_fs_state(FILE *f, unsigned short state) | ||
23 | { | ||
24 | fprintf(f, (state & EXT2_VALID_FS ? " clean" : " not clean")); | ||
25 | if (state & EXT2_ERROR_FS) | ||
26 | fprintf(f, " with errors"); | ||
27 | } | ||