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.
|
#define NO_UINT32_MACROS
|
|
#include "uint32.h"
|
|
|
|
void uint32_pack_big(char *out,uint32 in) {
|
|
out[3]=(char)in; in>>=8;
|
|
out[2]=(char)in; in>>=8;
|
|
out[1]=(char)in; in>>=8;
|
|
out[0]=(char)in;
|
|
}
|