s/qmail  3.3.23
Next generation secure email transport
cdbmake_pack.c
Go to the documentation of this file.
1 #include "cdbmake.h"
2 
3 void cdbmake_pack(unsigned char *buf,uint32 num)
4 {
5  *buf++ = num; num >>= 8;
6  *buf++ = num; num >>= 8;
7  *buf++ = num; num >>= 8;
8  *buf = num;
9 }
void cdbmake_pack(unsigned char *buf, uint32 num)
Definition: cdbmake_pack.c:3
char num[FMT_ULONG]
Definition: chkspawn.c:9
unsigned char * buf
Definition: dns.c:41