5 * The packed object type is stored in 3 bits.
6 * The type value 0 is a reserved prefix if ever there is more than 7
7 * object types, or any future format extensions.
15 /* 5/6 for future expansion */
20 * Packed object header
22 #define PACK_SIGNATURE 0x5041434b /* "PACK" */
23 #define PACK_VERSION 2
25 unsigned int hdr_signature
;
26 unsigned int hdr_version
;
27 unsigned int hdr_entries
;
30 extern int verify_pack(struct packed_git
*, int);