Add prototypes for sunlabel_dec() and sunlabel_enc().

Assume (for now) that all sun labels are big endian.
This commit is contained in:
Poul-Henning Kamp 2003-04-21 19:31:42 +00:00
parent ca7b358a91
commit 0b60aa467b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=113816

View File

@ -103,3 +103,6 @@ struct sun_disklabel { /* total size = 512 bytes */
#ifdef CTASSERT
CTASSERT(sizeof (struct sun_disklabel) == 512);
#endif
int sunlabel_dec(void const *pp, struct sun_disklabel *sl);
void sunlabel_enc(void *pp, struct sun_disklabel *sl);