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.
|
#include "fmt.h"
|
|
#include "uint64.h"
|
|
|
|
size_t fmt_pb_type1_fixed64(char* dest,uint64_t l) {
|
|
if (dest) uint64_pack(dest,l);
|
|
return 8;
|
|
}
|