mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
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.
12 lines
240 B
12 lines
240 B
#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);
|
|
}
|