summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorPeter Wu <lekensteyn@gmail.com>2011-12-05 21:25:53 +0000
committerPeter Wu <lekensteyn@gmail.com>2011-12-05 21:25:53 +0000
commite63ed727141798cf38024ec1f0b0eca449c70621 (patch)
treeecd2198e77e6042bee85090b5220827c46ccb46e /TODO
parent4a359599772a6059d95fb9c4c9f0ff071ccf7b50 (diff)
downloadpp2cc-e63ed727141798cf38024ec1f0b0eca449c70621.tar.gz
Provide information on functions missing in C but found in ASM
Diffstat (limited to 'TODO')
-rw-r--r--TODO15
1 files changed, 15 insertions, 0 deletions
diff --git a/TODO b/TODO
index a5d5ecc..9d28b80 100644
--- a/TODO
+++ b/TODO
@@ -2,3 +2,18 @@ Post decrement/increment operators:
p-- p++
x.y x->y
+
+Array support:
+int a[][2] = {{1, 2}, {3, 4}};
+int b[1][2];
+int *c[2];
+a[1][1];
+c[0] = &x;// where int x = 1;
+int *p = a[0];// points to address of first element
+int x = *a[0];// equals *(a[0])
+
+static variables in functions
+
+Type checking
+
+pointer functions