File: dos.h

package info (click to toggle)
util-linux 2.12r-19etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 8,932 kB
  • ctags: 5,101
  • sloc: ansic: 46,134; sh: 8,074; makefile: 1,111; 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 */