blob: cdb023df20a66c502cc74c7157ed618b724a3797 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef _LIBRARY_H
#define _LIBRARY_H
int read_disklabel(int fd,struct disklabel *d);
int dosumlabel(int fd,struct disklabel *d);
int overlaplabel(struct disklabel *d,int offset,int endplace, unsigned force);
#endif
|