summaryrefslogtreecommitdiff
path: root/docs/types.txt
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-04-07 16:18:53 +0200
committerTor Andersson <tor.andersson@artifex.com>2017-04-13 13:52:16 +0200
commitc88941abc6f0fe91a41dc35dcaa1874d4de2c429 (patch)
tree51ff32d773f80219922a0458ec76f401ba21e138 /docs/types.txt
parent9c805cc9f934cd12e89014db8ad70e3191cdaf2d (diff)
downloadmupdf-c88941abc6f0fe91a41dc35dcaa1874d4de2c429.tar.xz
Organize docs into HTML files.
Diffstat (limited to 'docs/types.txt')
-rw-r--r--docs/types.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/docs/types.txt b/docs/types.txt
deleted file mode 100644
index 1301b19c..00000000
--- a/docs/types.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-Various different integer types are used throughout MuPDF.
-
-In general:
-
- * int is assumed to be 32bit at least.
-
- * short is assumed to be exactly 16 bits.
-
- * char is assumed to be exactly 8 bits.
-
- * array sizes, string lengths, and allocations
- are measured using size_t. size_t is 32bit in 32bit builds,
- and 64bit on all 64bit builds.
-
- * buffers of data use unsigned chars (or uint8_t's).
-
- * Offsets within files/streams are represented using fz_off_t's.
- fz_off_t's are 64bits in 64bit builds, or in 32bit builds with
- FZ_LARGEFILE defined. Otherwise they are a native int (so 32bit
- in 32bit builds).
-
-In addition, we use floats and doubles, assumed to be IEEE compliant.