new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / analysisd / cdb / uint32.h
1 /* adopted from libowfat 0.9 (GPL) */
2
3 #ifndef UINT32_H
4 #define UINT32_H
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