#include #include #include int32_t int32_load_bigendian(const unsigned char *s) { int32_t x; memcpy(&x,s,sizeof x); return be32toh(x); }