From 22853e4a82c6ef7b336527529acb94b14a0b0fd8 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 7 Dec 2006 00:25:43 +0100 Subject: Imported from util-linux-2.10m tarball. --- partx/partx.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 partx/partx.h (limited to 'partx/partx.h') diff --git a/partx/partx.h b/partx/partx.h new file mode 100644 index 000000000..b96588a59 --- /dev/null +++ b/partx/partx.h @@ -0,0 +1,26 @@ +/* + * For each partition type there is a routine that takes + * a block device and a range, and returns the list of + * slices found there in the supplied array SP that can + * hold NS entries. The return value is the number of + * entries stored, or -1 if the appropriate type is not + * present. + */ + + +/* units: 512 byte sectors */ +struct slice { + unsigned int start; + unsigned int size; +}; + +typedef int (ptreader)(int fd, struct slice all, struct slice *sp, int ns); + +extern ptreader read_dos_pt, read_bsd_pt, read_solaris_pt, read_unixware_pt; + +char *getblock(int fd, unsigned int secnr); + +static inline int +four2int(unsigned char *p) { + return p[0] + (p[1]<<8) + (p[2]<<16) + (p[3]<<24); +} -- cgit v1.2.3-55-g7522