mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not 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
165 B
8 lines
165 B
![]()
15 years ago
|
#define NO_UINT64_MACROS
|
||
|
#include "uint64.h"
|
||
|
#include "uint32.h"
|
||
|
|
||
|
uint64 uint64_read(const char *in) {
|
||
|
return uint32_read(in) | ((uint64)uint32_read(in+4)<<32);
|
||
|
}
|