source: MondoRescue/branches/stable/mindi-busybox/e2fsprogs/e2p/ps.c@ 821

Last change on this file since 821 was 821, checked in by Bruno Cornec, 18 years ago

Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)

File size: 604 bytes
Line 
1/*
2 * ps.c - Print filesystem state
3 *
4 * Copyright (C) 1993, 1994 Remy Card <card@masi.ibp.fr>
5 * Laboratoire MASI, Institut Blaise Pascal
6 * Universite Pierre et Marie Curie (Paris VI)
7 *
8 * This file can be redistributed under the terms of the GNU Library General
9 * Public License
10 */
11
12/*
13 * History:
14 * 93/12/22 - Creation
15 */
16
17#include <stdio.h>
18
19#include "e2p.h"
20
21void print_fs_state(FILE *f, unsigned short state)
22{
23 fprintf(f, (state & EXT2_VALID_FS ? " clean" : " not clean"));
24 if (state & EXT2_ERROR_FS)
25 fprintf (f, " with errors");
26}
Note: See TracBrowser for help on using the repository browser.