<katzj@redhat.com> to add dosfslabel (originally by Peter Jones). Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
15 lines
295 B
C
15 lines
295 B
C
/* boot.h - Read and analyze ia PC/MS-DOS boot sector */
|
|
|
|
/* Written 1993 by Werner Almesberger */
|
|
|
|
|
|
#ifndef _BOOT_H
|
|
#define _BOOT_H
|
|
|
|
void read_boot(DOS_FS *fs);
|
|
void write_label(DOS_FS *fs, char *label);
|
|
|
|
/* Reads the boot sector from the currently open device and initializes *FS */
|
|
|
|
#endif
|