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_type5_fixed32.c

8 lines
138 B
C

#include "fmt.h"
#include "uint32.h"
size_t fmt_pb_type5_fixed32(char* dest,uint32_t l) {
if (dest) uint32_pack(dest,l);
return 4;
}