| 390 | { uint64_t m = (uint64_t)1U << 31; return (value ^ m) - m; } |
| 391 | |
| 392 | PB_API uint32_t pb_encode_float(float value) |
| 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; } |
no outgoing calls
no test coverage detected