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/fmt/fmt_pb_type1_fixed64.c

8 lines
138 B
C

#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;
}