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
40
using
ptrdiff_t
=
std::ptrdiff_t
;
42
}
43
44
#endif
/* __utl_core_types_h__ */
utl::dword_t
uint32_t dword_t
Definition:
types.h:33
utl::ptrdiff_t
std::ptrdiff_t ptrdiff_t
Definition:
types.h:40
utl::size_t
std::size_t size_t
Definition:
types.h:37
utl
STL's core language concepts.
Definition:
_1wire.h:30
utl::index_t
size_t index_t
index_t and size_t mend to be interchangeable
Definition:
types.h:38
utl::word_t
uint16_t word_t
16 bits wide
Definition:
types.h:32
utl::byte_t
uint8_t byte_t
8 bits wide
Definition:
types.h:31
include
utl
core
types.h
Generated by
1.8.14