chiark / gitweb /
Merge branch 'master' of git.distorted.org.uk:~mdw/publish/public-git/python-cdb
[python-cdb] / src / uint32.h
CommitLineData
dc7ddb87
MW
1#ifndef UINT32_H
2#define UINT32_H
3
4/* adopted from libowfat 0.9 (GPL) */
5
6typedef unsigned int uint32;
7
8extern void uint32_pack(char *out,uint32 in);
9extern void uint32_unpack(const char *in,uint32 *out);
10
11#endif