aboutsummaryrefslogtreecommitdiff
path: root/uint32.h2
blob: 7df3ddbd7582a4c40049cc262b1668b59b6aed19 (plain)
1
2
3
4
5
6
7
8
9
10
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(const char *,uint32 *);
extern void uint32_unpack_big(const char *,uint32 *);

#endif