| 393 | { union { uint32_t u32; float f; } u; u.f = value; return u.u32; } |
| 394 | |
| 395 | PB_API float pb_decode_float(uint32_t value) |
| 396 | { union { uint32_t u32; float f; } u; u.u32 = value; return u.f; } |
| 397 | |
| 398 | PB_API uint64_t pb_encode_double(double value) |
| 399 | { union { uint64_t u64; double d; } u; u.d = value; return u.u64; } |
no outgoing calls
no test coverage detected