FreeCalypso > hg > gsm-codec-lib
view libgsmfr2/typedef.h @ 561:cf62fe9fac3a
gsmhr-cod2hex: read native endian by default
Let's change gsmhr-* utilities to read *.cod and *.dec files
in the local machine's native byte order by default, and support
both -b and -l override options. This approach is the only sane
one when we write *.cod and *.dec files in the local endian.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 12 Feb 2025 00:04:33 +0000 |
parents | ffdcdb27d673 |
children |
line wrap: on
line source
/* * This internal header file provides adaptation between stdint types * and those used by GSM 06.10 code from TU-Berlin. */ typedef int16_t word; typedef int32_t longword; typedef uint16_t uword; typedef uint32_t ulongword; #define MIN_WORD (-32767 - 1) #define MAX_WORD 32767 #define MIN_LONGWORD (-2147483647 - 1) #define MAX_LONGWORD 2147483647