1/* Public domain */
2
3#ifndef UINT32_H
4#define UINT32_H
5
6typedef unsigned long uint32;
7
8extern void uint32_pack(char *,uint32);
9extern void uint32_pack_big(char *,uint32);
10extern void uint32_unpack(const char *,uint32 *);
11extern void uint32_unpack_big(const char *,uint32 *);
12
13#endif
14