12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #ifndef FLAC__ORDINALS_H
- #define FLAC__ORDINALS_H
- #include <stdint.h>
- #include <stdbool.h>
- typedef int8_t FLAC__int8;
- typedef uint8_t FLAC__uint8;
- typedef int16_t FLAC__int16;
- typedef int32_t FLAC__int32;
- typedef int64_t FLAC__int64;
- typedef uint16_t FLAC__uint16;
- typedef uint32_t FLAC__uint32;
- typedef uint64_t FLAC__uint64;
- typedef int FLAC__bool;
- typedef FLAC__uint8 FLAC__byte;
- #endif
|