summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wu <lekensteyn@gmail.com>2011-11-27 16:00:37 +0000
committerPeter Wu <lekensteyn@gmail.com>2011-11-27 16:00:37 +0000
commit7eed73ccb29d91c6719983ff6fb6504a5344845e (patch)
treebbb188c9a97dc9b2c5cd3003b38cd1f9672f911c
parent4e39a4203cc2b1bbd86a35417a087cdb6f9ce4d1 (diff)
downloadpp2cc-7eed73ccb29d91c6719983ff6fb6504a5344845e.tar.gz
Added TODO for pp2cc
-rw-r--r--TODO14
1 files changed, 14 insertions, 0 deletions
diff --git a/TODO b/TODO
new file mode 100644
index 0000000..5c7c490
--- /dev/null
+++ b/TODO
@@ -0,0 +1,14 @@
+Support for other assignment operators:
+/= *= += -= %= <<= >>= |= &= ^=
+
+Post decrement/increment operators:
+p-- p++
+
+Indirection, address and pointers in general
+*x &x x.y x->y
+
+Arrays (definition and use)
+int x;
+int a[2] = {1, 2];
+a[2] = 2;
+x = a[2]