Imported Upstream version 2.5.1
[ossec-hids.git] / src / analysisd / cdb / uint32_pack.c
1 #define NO_UINT32_MACROS
2 #include "uint32.h"
3
4 /* adopted from libowfat 0.9 (GPL) */
5
6 void uint32_pack(char *out,uint32 in) {
7   *out=in&0xff; in>>=8;
8   *++out=in&0xff; in>>=8;
9   *++out=in&0xff; in>>=8;
10   *++out=in&0xff;
11 }