Module: Ronin::Support::Binary::CTypes::CharTypes

Included in:
BigEndian, LittleEndian, Native
Defined in:
lib/ronin/support/binary/ctypes/char_types.rb

Constant Summary collapse

CHAR =

The char type.

CharType.new(signed: true, pack_string: 'Z')
UCHAR =

The unsigned char type.

CharType.new(signed: false, pack_string: 'a')
STRING =

The null-terminated C string type.

StringType.new