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.

10 lines
280 B
C

#define NO_UINT32_MACROS
#include "uint32.h"
void uint32_unpack(const char *in,uint32 *out) {
*out = (((uint32)(unsigned char)in[3])<<24) |
(((uint32)(unsigned char)in[2])<<16) |
(((uint32)(unsigned char)in[1])<<8) |
(uint32)(unsigned char)in[0];
}