Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef LIBSWIFTNAV_COMMON_H
00015 #define LIBSWIFTNAV_COMMON_H
00016
00021 #ifndef LIBOPENCM3_CM3_COMMON_H
00022 #include <stdint.h>
00023 #include <stdbool.h>
00024
00033 typedef int8_t s8;
00035 typedef int16_t s16;
00037 typedef int32_t s32;
00039 typedef uint8_t u8;
00041 typedef uint16_t u16;
00043 typedef uint32_t u32;
00045 typedef uint64_t u64;
00046
00048 #endif
00049
00052 #endif
00053