#include #include #include void int32_store_bigendian(unsigned char *s,int32_t x) { x = htobe32(x); memcpy(s,&x,sizeof x); }