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