summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-01-30 10:55:28 +0100
committerDaniel Friesel <derf@finalrewind.org>2021-01-30 10:55:28 +0100
commitc0fb6442e30c44490b42e6072151ee739b944e56 (patch)
tree48cd5bd004ffacebee7d8d139d09e34d3976fd42 /README.md
parent8768a30f73a8ad5ab00476401626993958845ad7 (diff)
Run tests with both C (c99, c11) and C++ (c++11, c++20) compilers
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/README.md b/README.md
index 6844251..1d60782 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,9 @@
**zlib-deflate-nostdlib** provides a zlib decompressor (RFC 1950) and deflate
reader (RFC 1951) suitable for 8- and 16-bit microcontrollers. It works
fine on MCUs as small as ATMega328P (used, for example, in the Arduino Nano)
-and MSP430FR5994. It is compatible with both C (e.g. c99) and C++
-(e.g. c++20). Apart from type definitions for (u)int8\_t, (u)int16\_t,
-and (u)int32\_t, which are typically provided by stdint.h, it has no external
-dependencies.
+and MSP430FR5994. It is compatible with both C (from c99 on) and C++. Apart
+from type definitions for (u)int8\_t, (u)int16\_t, and (u)int32\_t, which are
+typically provided by stdint.h, it has no external dependencies.
zlib-deflate-nostdlib is focused on a low memory footprint. It is not optimized
for speed and uses a pretty naive implementation right now.