| changeset 0 | eeadadee24f6 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uint32.h1 Fri Oct 19 11:01:15 2007 +0200 @@ -0,0 +1,11 @@ +#ifndef UINT32_H +#define UINT32_H + +typedef unsigned int uint32; + +extern void uint32_pack(char *,uint32); +extern void uint32_pack_big(char *,uint32); +extern void uint32_unpack(char *,uint32 *); +extern void uint32_unpack_big(char *,uint32 *); + +#endif