You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
984 B
C
47 lines
984 B
C
/* this header file comes from libowfat, http://www.fefe.de/libowfat/ */
|
|
#ifndef UINT32_H
|
|
#define UINT32_H
|
|
|
|
#include <inttypes.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef uint32_t uint32;
|
|
typedef int32_t int32;
|
|
|
|
#if (defined(__i386__) || defined(__x86_64__)) && !defined(NO_UINT32_MACROS)
|
|
|
|
static inline void uint32_pack(char* out,uint32 in) {
|
|
*(uint32*)out=in;
|
|
}
|
|
|
|
static inline void uint32_unpack(const char *in,uint32* out) {
|
|
*out=*(uint32*)in;
|
|
}
|
|
|
|
static inline uint32 uint32_read(const char* in) {
|
|
return *(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
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|