summaryrefslogtreecommitdiff
path: root/pycparser/c_generator.py
Commit message (Expand)AuthorAgeFilesLines
* Fix typos (#443)Kian Meng Ang2021-10-181-6/+6
* Implement C23 _Static_assert without message (#440)Vitaly Cheptsov2021-10-051-2/+3
* Implement _Alignas and _Alignof support with tests (#435)Vitaly Cheptsov2021-10-041-0/+4
* Introduce partial C11 support (#429)Vitaly Cheptsov2021-08-311-0/+8
* Extra line breaks when c_ast.If are chained (#401)Patricio Inzaghi2020-12-091-0/+2
* Clean up commentsEli Bendersky2020-10-051-4/+2
* Added flattening of abundant parenthesis in CGenerator (#394)Julian2020-10-051-5/+49
* Fix issues #378, #379, #385 (#387)Zecong Hu2020-07-181-7/+8
* Fix issue #99: parser for FuncDecl incorrectly sets declname attribute on ret...Saullo Carvalho Castelo Branco2019-06-271-6/+6
* Generate pointer types correctly (#315)Amir Gonnen2019-03-271-21/+21
* Fix array type generation (#312) (#313)Amir Gonnen2019-03-261-1/+17
* Use https:// for all project links where available (#267)Jon Dufresne2018-06-261-1/+1
* Add support for empty struct (#66) (#254)ldore2018-04-271-2/+4
* Fix non-generated constant expressions in designated initializers (#246) (#255)ldore2018-04-261-2/+2
* Fixed enum formatting in generating C code (issue #240). (#243)Seth Poulsen2018-03-161-5/+11
* Minor cleanupsEli Bendersky2017-11-221-3/+3
* Format enums with one value per line (#216)Kyle Altendorf2017-10-181-20/+29
* Add compound literal support to CGenerator (eliben/pycparser#176) (#188)Julian Priestley2017-04-191-0/+4
* Remove Copyright from every source fileEli Bendersky2017-02-021-1/+1
* Protected expressions in ternary operator with paranthesis.Daniel Murdin2016-07-141-3/+3
* Update c_generator to add {} around nested NamedInitializersJamie Pate2015-12-151-1/+1
* Add support for #pragmaJulian Hammer2015-10-201-0/+8
* Various cosmetic updates to documentationEli Bendersky2015-05-101-1/+1
* Cosmetic cleanupsEli Bendersky2015-04-201-2/+0
* adds visit_FuncDecl method to CGenerator + testSpencer Russell2015-02-201-2/+3
* Merge pull request #59 from akiradeveloper/feature/fix-comma-op-assignEli Bendersky2014-10-051-1/+1
|\
| * fix: Comma operator in AssignmentAkira Hayakawa2014-09-201-1/+1
* | fix typoAkira Hayakawa2014-09-201-1/+1
|/
* fix: comma operator in ternary operatorAkira Hayakawa2014-09-201-19/+14
* Bug in c_generator: children now returns a list of 2-tuplesSye van der Veen2014-05-231-1/+1
* fix for issue #24wayrick2014-02-061-1/+1
* Fix bitbucket issue #9: incorrect C generation for ExprList in expr context.Eli Bendersky2013-06-081-31/+32
* Fix nested initialiser lists.Graham Markall2013-01-161-1/+3
* Issue #79: fix C generation of switch/case AST nodesEli Bendersky2012-12-251-2/+6
* Issue #83: Distinguish initializer lists from expression listsEli Bendersky2012-12-251-18/+29
* Issue #84: fix C generation for some statementsEli Bendersky2012-12-251-1/+1
* Issue #89: fix C generation for K&R-style declarationsEli Bendersky2012-12-251-2/+5
* fix c generator to preserve qualifiers between pointer * and var nameEli Bendersky2012-01-241-1/+4
* moving CGenerator from examples/c-to-c.py into its own class in pycparser/. c...Eli Bendersky2012-01-241-0/+381