X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=yaffs_packedtags1.h;h=d6861ff505e45701e7edce4a354d66b25220b6a3;hp=01f952a7a33ab59da40a29b13f8237cd934f46e8;hb=fe192b14d52d6c7d4722402686dcb553153916c3;hpb=976dbeae825b18e6759f3903073a6784248cc244 diff --git a/yaffs_packedtags1.h b/yaffs_packedtags1.h index 01f952a..d6861ff 100644 --- a/yaffs_packedtags1.h +++ b/yaffs_packedtags1.h @@ -20,7 +20,7 @@ #include "yaffs_guts.h" -typedef struct { +struct yaffs_packed_tags1 { unsigned chunk_id:20; unsigned serial_number:2; unsigned n_bytes:10; @@ -30,8 +30,10 @@ typedef struct { unsigned unused_stuff:1; unsigned should_be_ff; -} yaffs_packed_tags1; +}; -void yaffs_pack_tags1(yaffs_packed_tags1 *pt, const struct yaffs_ext_tags *t); -void yaffs_unpack_tags1(struct yaffs_ext_tags *t, const yaffs_packed_tags1 *pt); +void yaffs_pack_tags1(struct yaffs_packed_tags1 *pt, + const struct yaffs_ext_tags *t); +void yaffs_unpack_tags1(struct yaffs_ext_tags *t, + const struct yaffs_packed_tags1 *pt); #endif