~ubuntu-branches/ubuntu/lucid/loop-aes-utils/lucid-security

« back to all changes in this revision

Viewing changes to mount/mount_guess_fstype.h

  • Committer: Bazaar Package Importer
  • Author(s): Max Vozeler
  • Date: 2008-08-22 11:57:17 UTC
  • mfrom: (8.1.3 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080822115717-v8wfa8pxwlfvyje0
Tags: 2.13.1-4
* patches/losetup_add_option_f.dpatch: 
  - Added to support "find next free loop" in losetup.
    (closes: #495682)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
struct mountargs {
2
 
        const char *spec;
3
 
        const char *node;
4
 
        const char *type;
5
 
        int flags;
6
 
        void *data;
7
 
};
8
 
 
9
 
extern int verbose;
10
 
 
11
 
char *guess_fstype(const char *device);
12
 
char *do_guess_fstype(const char *device);
13
 
int procfsloop(int (*mount_fn)(struct mountargs *), struct mountargs *args,
14
 
               const char **type);
15
 
int is_in_procfs(const char *fstype);
16