summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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]