File: dos.h

package info (click to toggle)
util-linux 2.12p-4sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 8,696 kB
  • ctags: 5,095
  • sloc: ansic: 46,097; sh: 4,939; makefile: 1,100; perl: 86; csh: 62; sed: 55
file content (13 lines) | stat: -rw-r--r-- 283 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef DOS_H_INCLUDED
#define DOS_H_INCLUDED

struct partition {
	unsigned char boot_ind;	/* 0x80 - active */
	unsigned char bh, bs, bc;
	unsigned char sys_type;
	unsigned char eh, es, ec;
	unsigned char start_sect[4];
	unsigned char nr_sects[4];
};

#endif				/* DOS_H_INCLUDED */