diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2022-10-06 12:26:42 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2022-10-06 12:26:42 -0400 |
commit | f4bc4570be7a51b00bf44d5bd4be99108dd94a30 (patch) | |
tree | abb6b32ac979d7dc0bdf1792d86b0daca8818525 /spec | |
parent | a58e2685b815a5a0d2d5f07bc3ae53016ba6f52b (diff) |
Libtnsl additions
Diffstat (limited to 'spec')
-rw-r--r-- | spec/Appendices.md | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/spec/Appendices.md b/spec/Appendices.md index cd161e9..c8bbde2 100644 --- a/spec/Appendices.md +++ b/spec/Appendices.md @@ -154,10 +154,6 @@ bool - boolean - char - ascii/extended ascii 8-bit value - - charp - unicode 8-bit character part (using either UTF-8 or UN7+1) - int8 - 8-bit integer int16 - 16-bit integer @@ -168,9 +164,9 @@ int - the default-width integer - uint8 - 8-bit unsigned integer + uint8 - 8-bit unsigned integer (also used to store byte-width characters) - uint16 - 16-bit unsigned integer + uint16 - 16-bit unsigned integer (also used to store word-width characters) uint32 - 32-bit unsigned integer @@ -277,7 +273,7 @@ alloc* (and related) - allocate (or reallocate) memory from somewhere (tnsl.algo._alloc) - dealloc* - free allocated memory (tnsl.algo._dealloc) + dealloc* (and related) - free allocated memory (tnsl.algo._dealloc) \* keyword requires a libtnsl implimentation |