~ubuntu-branches/ubuntu/saucy/dosfstools/saucy-proposed

« back to all changes in this revision

Viewing changes to src/boot.h

  • Committer: Package Import Robot
  • Author(s): Steve Langasek
  • Date: 2011-12-19 15:25:47 UTC
  • mfrom: (4.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20111219152547-ynwswo9ubk6l6szm
Tags: 3.0.12-1ubuntu1
* Merge from Debian testing, remaining changes:
  - debian/patches/02_fat32_label.patch: resolve an error thrown by
    dosfslabel when trying to label.
* Dropped changes, superseded in Debian:
  - build-depend on quilt: Debian is source format 3.0 (quilt).
  - debian/patches/01_fix_sector_count.patch: included upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
   can be found in /usr/share/common-licenses/GPL-3 file.
20
20
*/
21
21
 
22
 
 
23
22
#ifndef _BOOT_H
24
23
#define _BOOT_H
25
24
 
26
 
void read_boot(DOS_FS *fs);
27
 
void write_label(DOS_FS *fs, char *label);
 
25
void read_boot(DOS_FS * fs);
 
26
void write_label(DOS_FS * fs, char *label);
28
27
 
29
28
/* Reads the boot sector from the currently open device and initializes *FS */
30
29