regexps.com
#include <hackerlab/machine/types.h>
The following machine-specific types and macros are used throughout the Hackerlab C library.
An 8-bit unsigned integer.
An 8-bit signed integer.
An 16-bit unsigned integer.
An 16-bit signed integer.
An 32-bit unsigned integer.
An 32-bit signed integer.
Short-hand for unsigned char
.
Short-hand for unsigned short
.
Short-hand for unsigned int
.
Short-hand for unsigned long
.
An integer equal to sizeof (short)
.
An integer equal to sizeof (int)
.
An integer equal to sizeof (long)
.
A synonym for t_uint16
-- an unsigned 16-bit integer.
This type is used to represent code units in the UTF-16 encoding form.
A synonym for t_uint32
-- an unsigned 32-bit integer.
This type is used to represent Unicode code points and can also be used to represent code units in the UTF-32 encoding form.
regexps.com