From 0d2d494d5498dff9556809c7658ecdeee64ca62d Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Thu, 17 Oct 2019 17:53:49 -0500 Subject: [PATCH] Update JoeyLib Data Types --- JoeyLib-Data-Types.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/JoeyLib-Data-Types.md b/JoeyLib-Data-Types.md index d63b834..5d45603 100644 --- a/JoeyLib-Data-Types.md +++ b/JoeyLib-Data-Types.md @@ -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.