Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds support for the trailing commas in the enum-list rule
Here is the test: ``` $ cat enum-{commas,no-comma}.c typedef enum { Little, Medium, Big, } Size; typedef enum { Little, Medium, Big } Size; $ ./printc/printc enum-{commas,no-comma}.c typedef enum { Little, Medium, Big } Size; typedef enum { Little, Medium, Big } Size; ```
- Loading branch information