summaryrefslogtreecommitdiff
path: root/development.md
diff options
context:
space:
mode:
Diffstat (limited to 'development.md')
-rw-r--r--development.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/development.md b/development.md
index 255c09a..6795987 100644
--- a/development.md
+++ b/development.md
@@ -22,6 +22,9 @@ Functions which can fail (i.e. print an error message and stop) return a Status,
which is a bool, but GCC/clang warns about not using the return value.
Almost all of toc's types are defined in types.h.
+Sometimes a type ending in Ptr is defined, e.g. typedef Declaration \*DeclarationPtr. This is
+for the arr\_foreach macro, and not meant for normal use.
+
The fixed-width types U8/16/32/64 and I8/16/32/64 have been defined.
data\_structures.c contains a dynamic array implementation which is very useful.