| Age | Commit message (Expand) | Author | Files | Lines |
| 2005-04-07 | Change the copyright to Transmeta Corp, that's likely to be | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Start doing constant strings right: do proper concatenation of strings, | Linus Torvalds | 1 | -15/+19 |
| 2005-04-07 | Introduce a "struct position", and have the different types refer | Linus Torvalds | 1 | -44/+41 |
| 2005-04-07 | Add support for tokenizing a pre-allocated string instead of a file. | Linus Torvalds | 1 | -35/+61 |
| 2005-04-07 | Always accept \' and \" token escapes in strings/char constants, | Linus Torvalds | 1 | -0/+4 |
| 2005-04-07 | Add copyright statements and file comments. Add a FAQ, README, and | Linus Torvalds | 1 | -5/+3 |
| 2005-04-07 | Parse __alignof__ (although right now it ends up parsing as a | Linus Torvalds | 1 | -5/+1 |
| 2005-04-07 | Avoid re-tokenizing header files that are protected by | Linus Torvalds | 1 | -8/+24 |
| 2005-04-07 | Make the tokenizer insert begin/end tokens at stream boundaries, | Linus Torvalds | 1 | -8/+41 |
| 2005-04-07 | Re-name the "action" thing as something saner - it's now a "stream". | Linus Torvalds | 1 | -126/+128 |
| 2005-04-07 | Tokenization drops whitespace, but there is one area where it is | Linus Torvalds | 1 | -1/+10 |
| 2005-04-07 | Make preprocessor errors more readable, to help adding the | Linus Torvalds | 1 | -0/+3 |
| 2005-04-07 | Move some common parsing routines to "lib", so thatthe | Linus Torvalds | 1 | -29/+3 |
| 2005-04-07 | When tokenizing integers, make the first character in the token | Linus Torvalds | 1 | -3/+16 |
| 2005-04-07 | Teach the preprocessing pass to handle 'include' and | Linus Torvalds | 1 | -4/+6 |
| 2005-04-07 | Preprocessor symbol handling: handle simple cases of #define and | Linus Torvalds | 1 | -0/+1 |
| 2005-04-07 | Add initial preprocessor pass (doesn't actually do much) | Linus Torvalds | 1 | -6/+12 |
| 2005-04-07 | Implement space-efficient allocator for small data structures. We | Linus Torvalds | 1 | -76/+72 |
| 2005-04-07 | Make 'struct token' smaller (it's way too common). | Linus Torvalds | 1 | -4/+14 |
| 2005-04-07 | Tokenize integer constants with "u" and "l" specifiers (drop them for now). | Linus Torvalds | 1 | -11/+17 |
| 2005-04-07 | Add allocators for statistics | Linus Torvalds | 1 | -10/+4 |
| 2005-04-07 | Fix up confusion between different typedefs and namespaces. | Linus Torvalds | 1 | -6/+9 |
| 2005-04-07 | Make lexing tester print out string constants properly. | Linus Torvalds | 1 | -3/+4 |
| 2005-04-07 | Fix warning, missed return value, and add 'struct', 'union' and | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Initialize 'struct', 'union' and 'enum' built-ins. | Linus Torvalds | 1 | -24/+44 |
| 2005-04-07 | Add more type parsing: function and array declarators, function | Linus Torvalds | 1 | -0/+2 |
| 2005-04-07 | Start handling minimal semantic information, needed for types. | Linus Torvalds | 1 | -28/+53 |
| 2005-04-07 | Mark local parsing functions 'static'. | Linus Torvalds | 1 | -1/+1 |
| 2005-04-07 | Add simple recursive-descent C expression parsing (but we only do the | Linus Torvalds | 1 | -23/+90 |
| 2005-04-07 | Yaah. I'm a retard, but I want to at least try to see how hard it is | Linus Torvalds | 1 | -0/+559 |