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

13 lines
240 B
C

#include "fmt.h"
#include "compiletimeassert.h"
size_t fmt_pb_type1_double(char* dest,double d) {
union {
double d;
uint64_t u;
} u;
compiletimeassert(sizeof(double) == 8);
u.d=d;
return fmt_pb_type1_fixed64(dest,u.u);
}