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.
libowfat/scan/scan_pb_type1_fixed64.c

9 lines
169 B
C

#include "scan.h"
#include "uint64.h"
size_t scan_pb_type1_fixed64(const char* in,size_t len,uint64_t* d) {
if (len<8) return 0;
uint64_unpack(in,d);
return 8;
}