diff options
| author | rimio <vasi.vilvoiu@gmail.com> | 2018-03-01 23:10:42 +0200 |
|---|---|---|
| committer | rimio <vasi.vilvoiu@gmail.com> | 2018-03-01 23:10:42 +0200 |
| commit | 3621d55cd101fa5b23e645287393deefacf43e02 (patch) | |
| tree | 8dc934e5ed5f2cdcd3f0f2fbae95f87fbab7ea8e /src/ecbor_internal.h | |
| parent | 245bce0bd3b9af5ab026f4b8453424dbc4a1faea (diff) | |
Support for fp32 and fp64
Diffstat (limited to 'src/ecbor_internal.h')
| -rw-r--r-- | src/ecbor_internal.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ecbor_internal.h b/src/ecbor_internal.h index b783eb1..e5e4179 100644 --- a/src/ecbor_internal.h +++ b/src/ecbor_internal.h @@ -37,4 +37,10 @@ ecbor_uint32_from_big_endian (uint32_t value); extern uint64_t ecbor_uint64_from_big_endian (uint64_t value); +extern float +ecbor_fp32_from_big_endian (float value); + +extern double +ecbor_fp64_from_big_endian (double value); + #endif
\ No newline at end of file |
