mirror of /home/gitosis/repositories/libowfat.git
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.
13 lines
236 B
C
13 lines
236 B
C
![]()
8 years ago
|
#include "fmt.h"
|
||
|
#include "compiletimeassert.h"
|
||
|
|
||
|
size_t fmt_pb_type5_float(char* dest,float f) {
|
||
|
union {
|
||
|
float f;
|
||
|
uint32_t u;
|
||
|
} u;
|
||
|
compiletimeassert(sizeof(float) == 4);
|
||
|
u.f=f;
|
||
|
return fmt_pb_type5_fixed32(dest,u.u);
|
||
|
}
|