87c40cf4de
function old new delta print_e2flags_long - 109 +109 list_attributes 248 232 -16 print_e2flags 169 47 -122 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 0/2 up/down: 109/-138) Total: -29 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
/* vi: set sw=4 ts=4: */
|
|
/*
|
|
* See README for additional information
|
|
*
|
|
* This file can be redistributed under the terms of the GNU Library General
|
|
* Public License
|
|
*/
|
|
|
|
/* Constants and structures */
|
|
#include "bb_e2fs_defs.h"
|
|
|
|
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
|
|
|
/* Iterate a function on each entry of a directory */
|
|
int iterate_on_dir(const char *dir_name,
|
|
int FAST_FUNC (*func)(const char *, struct dirent *, void *),
|
|
void *private);
|
|
|
|
/* Print file attributes on an ext2 file system */
|
|
void print_e2flags_long(unsigned flags);
|
|
void print_e2flags(unsigned flags);
|
|
|
|
extern const uint32_t e2attr_flags_value[];
|
|
extern const char e2attr_flags_sname[];
|
|
|
|
/* If you plan to ENABLE_COMPRESSION, see e2fs_lib.c and chattr.c - */
|
|
/* make sure that chattr doesn't accept bad options! */
|
|
#ifdef ENABLE_COMPRESSION
|
|
#define e2attr_flags_value_chattr (&e2attr_flags_value[5])
|
|
#define e2attr_flags_sname_chattr (&e2attr_flags_sname[5])
|
|
#else
|
|
#define e2attr_flags_value_chattr (&e2attr_flags_value[1])
|
|
#define e2attr_flags_sname_chattr (&e2attr_flags_sname[1])
|
|
#endif
|
|
|
|
POP_SAVED_FUNCTION_VISIBILITY
|