Release 0.32-5.5.
[python-cdb] / src / uint32.h
1 #ifndef UINT32_H
2 #define UINT32_H
3
4 /* adopted from libowfat 0.9 (GPL) */
5
6 typedef unsigned int uint32;
7
8 extern void uint32_pack(char *out,uint32 in);
9 extern void uint32_unpack(const char *in,uint32 *out);
10
11 #endif