uTL
micro Template library
types.h
Go to the documentation of this file.
1 
21 #ifndef __utl_core_types_h__
22 #define __utl_core_types_h__
23 
24 #include <cstddef>
25 #include <cstdint>
26 
27 //#include <type_traits>
28 
29 namespace utl {
31  using byte_t = uint8_t;
32  using word_t = uint16_t;
33  using dword_t = uint32_t;
34 
37  using size_t = std::size_t;
38  using index_t = size_t;
39 
42 }
43 
44 #endif /* __utl_core_types_h__ */
uint32_t dword_t
Definition: types.h:33
std::ptrdiff_t ptrdiff_t
Definition: types.h:40
std::size_t size_t
Definition: types.h:37
STL&#39;s core language concepts.
Definition: _1wire.h:30
size_t index_t
index_t and size_t mend to be interchangeable
Definition: types.h:38
uint16_t word_t
16 bits wide
Definition: types.h:32
uint8_t byte_t
8 bits wide
Definition: types.h:31