2011-07-17 18:01:29 +00:00
|
|
|
#ifndef _BYTEORDER_H_
|
|
|
|
#define _BYTEORDER_H_
|
2011-07-17 18:32:17 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2011-07-17 18:01:29 +00:00
|
|
|
void uint32touint8p(uint32_t v, uint8_t *p);
|
2011-07-17 18:32:17 +00:00
|
|
|
uint32_t uint8ptouint32(uint8_t *p);
|
2011-07-17 18:01:29 +00:00
|
|
|
|
|
|
|
#endif
|