aboutsummaryrefslogtreecommitdiff
path: root/src/numeric_types.h
blob: f58e9ae9ccc88441a9bca6453c027086852ed46b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: BSD-3-Clause

#ifndef INVERTER_TOOLS_NUMERIC_TYPES_H
#define INVERTER_TOOLS_NUMERIC_TYPES_H

#include <cstdint>

typedef uint8_t  u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;

#endif //INVERTER_TOOLS_NUMERIC_TYPES_H