Zycore 1.5.1.0
|
Go to the source code of this file.
Typedefs | |
typedef uint8_t | ZyanU8 |
typedef uint16_t | ZyanU16 |
typedef uint32_t | ZyanU32 |
typedef uint64_t | ZyanU64 |
typedef int8_t | ZyanI8 |
typedef int16_t | ZyanI16 |
typedef int32_t | ZyanI32 |
typedef int64_t | ZyanI64 |
typedef size_t | ZyanUSize |
typedef ptrdiff_t | ZyanISize |
typedef uintptr_t | ZyanUPointer |
typedef intptr_t | ZyanIPointer |
typedef void * | ZyanVoidPointer |
typedef const void * | ZyanConstVoidPointer |
typedef ZyanU8 | ZyanBool |
typedef ZyanI8 | ZyanTernary |
typedef char * | ZyanCharPointer |
typedef const char * | ZyanConstCharPointer |
Includes and defines some default data types.
typedef ZyanU8 ZyanBool |
Defines the ZyanBool
data-type.
Represents a default boolean data-type where 0
is interpreted as false
and all other values as true
.
typedef char* ZyanCharPointer |
Defines the ZyanCharPointer
data-type.
This type is most often used to represent null-terminated strings aka. C-style strings.
typedef const char* ZyanConstCharPointer |
Defines the ZyanConstCharPointer
data-type.
This type is most often used to represent null-terminated strings aka. C-style strings.
typedef const void* ZyanConstVoidPointer |
Defines the ZyanConstVoidPointer
data-type.
typedef ZyanI8 ZyanTernary |
Defines the ZyanTernary
data-type.
The ZyanTernary
is a balanced ternary type that uses three truth values indicating true
, false
and an indeterminate third value.
typedef void* ZyanVoidPointer |
Defines the ZyanVoidPointer
data-type.