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.
10 lines
182 B
C
10 lines
182 B
C
24 years ago
|
#define NO_UINT32_MACROS
|
||
|
#include "uint32.h"
|
||
|
|
||
|
void uint32_pack(char *out,uint32 in) {
|
||
|
*out=in&0xff; in>>=8;
|
||
|
*++out=in&0xff; in>>=8;
|
||
|
*++out=in&0xff; in>>=8;
|
||
|
*++out=in&0xff;
|
||
|
}
|