mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
12 lines
249 B
Plaintext
12 lines
249 B
Plaintext
#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
|