summaryrefslogtreecommitdiff
path: root/TODO.txt
diff options
context:
space:
mode:
authoreli.bendersky <devnull@localhost>2010-10-30 09:46:29 +0200
committereli.bendersky <devnull@localhost>2010-10-30 09:46:29 +0200
commit98f453755aea35e4c69c665edc558d58dd2eb9f5 (patch)
tree4a921653a7f60f1114221d238aed21bfd14da121 /TODO.txt
parentef29ff9272ec225a0f324eca82cc204f556e91eb (diff)
downloadpycparser-98f453755aea35e4c69c665edc558d58dd2eb9f5.tar.gz
Implemented 'long long' type support for C99
Diffstat (limited to 'TODO.txt')
-rw-r--r--TODO.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/TODO.txt b/TODO.txt
index 5395b5a..988f826 100644
--- a/TODO.txt
+++ b/TODO.txt
@@ -5,12 +5,14 @@ Pycparser 2: the idea is to "mostly" support C99
Implement:
+- long long: including literal endings LL in lexer
V- new keywords restrict, inline
-- mix declarations and statements inside a block
+V- mix declarations and statements inside a block
V- VLAs (non-constants in arr[n]), including [*] for parameter lists
V- declarations in the first expression of "for" loops
- named initializers for structs and arrays
+* Make the changelog in the readme a normal bullet list
Fixes since last:
------------------