source: MondoRescue/branches/2.2.5/mindi-busybox/e2fsprogs/e2fs_lib.h

Last change on this file was 1765, checked in by Bruno Cornec, 16 years ago

Update to busybox 1.7.2

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1/* vi: set sw=4 ts=4: */
2/*
3 * See README for additional information
4 *
5 * This file can be redistributed under the terms of the GNU Library General
6 * Public License
7 */
8
9/* Constants and structures */
10#include "e2fs_defs.h"
11
12/* Iterate a function on each entry of a directory */
13int iterate_on_dir(const char *dir_name,
14 int (*func)(const char *, struct dirent *, void *),
15 void *private);
16
17/* Get/set a file version on an ext2 file system */
18int fgetsetversion(const char *name, unsigned long *get_version, unsigned long set_version);
19#define fgetversion(name, version) fgetsetversion(name, version, 0)
20#define fsetversion(name, version) fgetsetversion(name, NULL, version)
21
22/* Get/set a file flags on an ext2 file system */
23int fgetsetflags(const char *name, unsigned long *get_flags, unsigned long set_flags);
24#define fgetflags(name, flags) fgetsetflags(name, flags, 0)
25#define fsetflags(name, flags) fgetsetflags(name, NULL, flags)
26
27/* Must be 1 for compatibility with `int long_format'. */
28#define PFOPT_LONG 1
29/* Print file attributes on an ext2 file system */
30void print_flags(FILE *f, unsigned long flags, unsigned options);
Note: See TracBrowser for help on using the repository browser.