mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 11:57:43 +08:00
cc05b877a2
first commit acl to github
12 lines
250 B
C
12 lines
250 B
C
#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
|