chiark / gitweb /
Merge branch 'master' of git.distorted.org.uk:~mdw/publish/public-git/python-cdb
[python-cdb] / src / 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 }