mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
708 B
25 lines
708 B
#ifndef UINT32_H |
|
#define UINT32_H |
|
|
|
typedef unsigned int uint32; |
|
typedef signed int int32; |
|
|
|
#if defined(__i386__) && !defined(NO_UINT32_MACROS) |
|
#define uint32_pack(out,in) (*(uint32*)(out)=(in)) |
|
#define uint32_unpack(in,out) (*(out)=*(uint32*)(in)) |
|
#define uint32_read(in) (*(uint32*)(in)) |
|
void uint32_pack_big(char *out,uint32 in); |
|
void uint32_unpack_big(const char *in,uint32* out); |
|
uint32 uint32_read_big(const char *in); |
|
#else |
|
|
|
void uint32_pack(char *out,uint32 in); |
|
void uint32_pack_big(char *out,uint32 in); |
|
void uint32_unpack(const char *in,uint32* out); |
|
void uint32_unpack_big(const char *in,uint32* out); |
|
uint32 uint32_read(const char *in); |
|
uint32 uint32_read_big(const char *in); |
|
|
|
#endif |
|
|
|
#endif
|
|
|