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.
8 lines
143 B
C
8 lines
143 B
C
17 years ago
|
#define NO_UINT64_MACROS
|
||
|
#include "uint64.h"
|
||
|
#include "uint32.h"
|
||
|
|
||
|
void uint64_unpack(const char *in,uint64 *out) {
|
||
|
*out = uint64_read(in);
|
||
|
}
|