Update JoeyLib Data Types
parent
5524579f44
commit
0d2d494d54
1 changed files with 12 additions and 0 deletions
|
@ -3,3 +3,15 @@ A boolean data type is provided for systems lacking them. Also provided are `tr
|
|||
|
||||
#### byte
|
||||
Unsigned 8 bit data type. When working with 8 bit data in JoeyLib, use the `byte` type where possible. Only use `char` if you explicitly mean for characters/text to be stored.
|
||||
|
||||
#### jint16
|
||||
Signed 16 bit integer. Guaranteed to be 16 bits on all supported targets.
|
||||
|
||||
#### jint32
|
||||
Signed 32 bit integer. Guaranteed to be 32 bits on all supported targets.
|
||||
|
||||
#### juint16
|
||||
Unsigned 16 bit integer. Guaranteed to be 16 bits on all supported targets.
|
||||
|
||||
#### juint32
|
||||
Unsigned 32 bit integer. Guaranteed to be 32 bits on all supported targets.
|
||||
|
|
Loading…
Add table
Reference in a new issue