crashtest-r0ket/firmware/basic/byteorder.c

10 lines
169 B
C
Raw Normal View History

2011-07-17 18:01:29 +00:00
#include <stdint.h>
void uint32touint8p(uint32_t v, uint8_t *p)
{
*p++ = (v>>24)&0xFF;
*p++ = (v>>16)&0xFF;
*p++ = (v>> 8)&0xFF;
*p++ = (v>> 0)&0xFF;
}