diff -r 000000000000 -r eeadadee24f6 uint32.h2 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uint32.h2 Fri Oct 19 11:01:15 2007 +0200 @@ -0,0 +1,11 @@ +#ifndef UINT32_H +#define UINT32_H + +typedef unsigned long 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