"SfR Fresh" - the SfR Freeware/Shareware Archive 
As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers.
Alternatively you can here view or download the uninterpreted source code file.
That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
1 /* boot.h - Read and analyze ia PC/MS-DOS boot sector */
2
3 /* Written 1993 by Werner Almesberger */
4
5
6 #ifndef _BOOT_H
7 #define _BOOT_H
8
9 void read_boot(DOS_FS *fs);
10
11 /* Reads the boot sector from the currently open device and initializes *FS */
12
13 #endif