aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/lib.c
AgeCommit message (Expand)AuthorFilesLines
2005-04-07Oops. Move type definition to top of function, instead ofLinus Torvalds1-1/+1
2005-04-07Change the copyright to Transmeta Corp, that's likely to beLinus Torvalds1-1/+1
2005-04-07Drop debugging message.Linus Torvalds1-1/+0
2005-04-07Make the parser discard the tokens after having parsedLinus Torvalds1-9/+15
2005-04-07Introduce a "struct position", and have the different types referLinus Torvalds1-17/+9
2005-04-07Don't die on excessive warnings, just print a warning and stopLinus Torvalds1-2/+9
2005-04-07Make a function call point an expression type of its own, andLinus Torvalds1-0/+13
2005-04-07Move expression data structures to "expression.h", they gotLinus Torvalds1-0/+1
2005-04-07Fix up more stupidities in the type parsing. It might even be getting closeLinus Torvalds1-1/+1
2005-04-07Add copyright statements and file comments. Add a FAQ, README, andLinus Torvalds1-1/+3
2005-04-07Make iterators take a helper datum, and tell the callback whetherLinus Torvalds1-3/+9
2005-04-07Make listop functions keep the lists in chronological orderLinus Torvalds1-5/+16
2005-04-07Since we're making much more progress now, allow more warnings.Linus Torvalds1-1/+1
2005-04-07Don't be overly verbose when clearing an allocator.Linus Torvalds1-1/+0
2005-04-07Clear allocation statistics when clearing an allocator.Linus Torvalds1-0/+3
2005-04-07Create function to clear out the existing allocations. TheLinus Torvalds1-0/+6
2005-04-07Move some common parsing routines to "lib", so thattheLinus Torvalds1-0/+40
2005-04-07Do much more pre-processing work: support #ifdef/#else/#endifLinus Torvalds1-8/+24
2005-04-07Add initial preprocessor pass (doesn't actually do much)Linus Torvalds1-0/+11
2005-04-07Implement space-efficient allocator for small data structures. WeLinus Torvalds1-12/+81
2005-04-07Add allocators for statisticsLinus Torvalds1-1/+24
2005-04-07Parse a lot more types (including complex structures and unions andLinus Torvalds1-0/+33
2005-04-07Parse more C expressions.Linus Torvalds1-5/+13
2005-04-07Add simple recursive-descent C expression parsing (but we only do theLinus Torvalds1-0/+39