├── .travis.yml ├── LICENSE ├── README.md ├── betty-doc.pl ├── betty-style.pl ├── betty.sh ├── install.sh ├── man ├── betty-doc.1 ├── betty-style.1 └── betty.1 ├── test.sh └── tests ├── doc ├── doc0.c ├── doc0.expected.stderr ├── doc0.expected.stdout ├── doc1.c ├── doc1.expected.stderr ├── doc1.expected.stdout ├── doc10.c ├── doc10.expected.stderr ├── doc10.expected.stdout ├── doc11.c ├── doc11.expected.stderr ├── doc11.expected.stdout ├── doc12.c ├── doc12.expected.stderr ├── doc12.expected.stdout ├── doc13.expected.stderr ├── doc13.expected.stdout ├── doc13.h ├── doc14.c ├── doc14.expected.stderr ├── doc14.expected.stdout ├── doc2.c ├── doc2.expected.stderr ├── doc2.expected.stdout ├── doc3.c ├── doc3.expected.stderr ├── doc3.expected.stdout ├── doc4.c ├── doc4.expected.stderr ├── doc4.expected.stdout ├── doc5.c ├── doc5.expected.stderr ├── doc5.expected.stdout ├── doc6.expected.stderr ├── doc6.expected.stdout ├── doc6.h ├── doc7.expected.stderr ├── doc7.expected.stdout ├── doc7.h ├── doc8.expected.stderr ├── doc8.expected.stdout ├── doc8.h ├── doc9.c ├── doc9.expected.stderr └── doc9.expected.stdout └── style ├── braces ├── braces0.c ├── braces0.expected ├── braces1.c ├── braces1.expected ├── braces2.c ├── braces2.expected ├── braces3.c ├── braces3.expected ├── braces4.expected └── braces4.h ├── comments ├── comments0.c ├── comments0.expected ├── comments1.c └── comments1.expected ├── functions ├── functions0.c ├── functions0.expected ├── functions1.c ├── functions1.expected ├── functions2.c ├── functions2.expected ├── functions3.c ├── functions3.expected ├── functions4.c ├── functions4.expected ├── functions5.expected ├── functions5.h ├── functions6.c └── functions6.expected ├── headers ├── headers0.expected ├── headers0.h ├── headers1.expected ├── headers1.h ├── headers2.c ├── headers2.expected ├── headers3.expected ├── headers3.h ├── headers4.c └── headers4.expected ├── indentation ├── indentation0.c └── indentation0.expected ├── line_break ├── line_break0.c ├── line_break0.expected ├── line_break1.c ├── line_break1.expected ├── line_break2.c ├── line_break2.expected ├── line_break3.c ├── line_break3.expected ├── line_break4.c ├── line_break4.expected ├── line_break5.c └── line_break5.expected ├── spaces ├── spaces0.c ├── spaces0.expected ├── spaces1.c ├── spaces1.expected ├── spaces2.c ├── spaces2.expected ├── spaces3.c ├── spaces3.expected ├── spaces4.c ├── spaces4.expected ├── spaces5.c ├── spaces5.expected ├── spaces6.c └── spaces6.expected └── variables ├── variables0.c ├── variables0.expected ├── variables1.c ├── variables1.expected ├── variables2.c ├── variables2.expected ├── variables3.c ├── variables3.expected ├── variables4.c └── variables4.expected /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/README.md -------------------------------------------------------------------------------- /betty-doc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/betty-doc.pl -------------------------------------------------------------------------------- /betty-style.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/betty-style.pl -------------------------------------------------------------------------------- /betty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/betty.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/install.sh -------------------------------------------------------------------------------- /man/betty-doc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/man/betty-doc.1 -------------------------------------------------------------------------------- /man/betty-style.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/man/betty-style.1 -------------------------------------------------------------------------------- /man/betty.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/man/betty.1 -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/test.sh -------------------------------------------------------------------------------- /tests/doc/doc0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc0.c -------------------------------------------------------------------------------- /tests/doc/doc0.expected.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/doc0.expected.stdout: -------------------------------------------------------------------------------- 1 | op_add 2 | main 3 | -------------------------------------------------------------------------------- /tests/doc/doc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc1.c -------------------------------------------------------------------------------- /tests/doc/doc1.expected.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc1.expected.stderr -------------------------------------------------------------------------------- /tests/doc/doc1.expected.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/doc10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc10.c -------------------------------------------------------------------------------- /tests/doc/doc10.expected.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/doc10.expected.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc10.expected.stdout -------------------------------------------------------------------------------- /tests/doc/doc11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc11.c -------------------------------------------------------------------------------- /tests/doc/doc11.expected.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/doc11.expected.stdout: -------------------------------------------------------------------------------- 1 | sample 2 | -------------------------------------------------------------------------------- /tests/doc/doc12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc12.c -------------------------------------------------------------------------------- /tests/doc/doc12.expected.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/doc12.expected.stdout: -------------------------------------------------------------------------------- 1 | tester 2 | -------------------------------------------------------------------------------- /tests/doc/doc13.expected.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/doc13.expected.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/doc13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc13.h -------------------------------------------------------------------------------- /tests/doc/doc14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc14.c -------------------------------------------------------------------------------- /tests/doc/doc14.expected.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc14.expected.stderr -------------------------------------------------------------------------------- /tests/doc/doc14.expected.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc14.expected.stdout -------------------------------------------------------------------------------- /tests/doc/doc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc2.c -------------------------------------------------------------------------------- /tests/doc/doc2.expected.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc2.expected.stderr -------------------------------------------------------------------------------- /tests/doc/doc2.expected.stdout: -------------------------------------------------------------------------------- 1 | op_add 2 | main 3 | -------------------------------------------------------------------------------- /tests/doc/doc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc3.c -------------------------------------------------------------------------------- /tests/doc/doc3.expected.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc3.expected.stderr -------------------------------------------------------------------------------- /tests/doc/doc3.expected.stdout: -------------------------------------------------------------------------------- 1 | op_add 2 | main 3 | -------------------------------------------------------------------------------- /tests/doc/doc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc4.c -------------------------------------------------------------------------------- /tests/doc/doc4.expected.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/doc4.expected.stdout: -------------------------------------------------------------------------------- 1 | print_chessboard 2 | -------------------------------------------------------------------------------- /tests/doc/doc5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc5.c -------------------------------------------------------------------------------- /tests/doc/doc5.expected.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/doc5.expected.stdout: -------------------------------------------------------------------------------- 1 | alloc_grid 2 | -------------------------------------------------------------------------------- /tests/doc/doc6.expected.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/doc6.expected.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc6.expected.stdout -------------------------------------------------------------------------------- /tests/doc/doc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc6.h -------------------------------------------------------------------------------- /tests/doc/doc7.expected.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc7.expected.stderr -------------------------------------------------------------------------------- /tests/doc/doc7.expected.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc7.expected.stdout -------------------------------------------------------------------------------- /tests/doc/doc7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc7.h -------------------------------------------------------------------------------- /tests/doc/doc8.expected.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc8.expected.stderr -------------------------------------------------------------------------------- /tests/doc/doc8.expected.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/doc8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc8.h -------------------------------------------------------------------------------- /tests/doc/doc9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc9.c -------------------------------------------------------------------------------- /tests/doc/doc9.expected.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/doc/doc9.expected.stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/doc/doc9.expected.stdout -------------------------------------------------------------------------------- /tests/style/braces/braces0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/braces/braces0.c -------------------------------------------------------------------------------- /tests/style/braces/braces0.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/braces/braces0.expected -------------------------------------------------------------------------------- /tests/style/braces/braces1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/braces/braces1.c -------------------------------------------------------------------------------- /tests/style/braces/braces1.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/braces/braces2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/braces/braces2.c -------------------------------------------------------------------------------- /tests/style/braces/braces2.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/braces/braces3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/braces/braces3.c -------------------------------------------------------------------------------- /tests/style/braces/braces3.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/braces/braces4.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/braces/braces4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/braces/braces4.h -------------------------------------------------------------------------------- /tests/style/comments/comments0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/comments/comments0.c -------------------------------------------------------------------------------- /tests/style/comments/comments0.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/comments/comments0.expected -------------------------------------------------------------------------------- /tests/style/comments/comments1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/comments/comments1.c -------------------------------------------------------------------------------- /tests/style/comments/comments1.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/functions/functions0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/functions/functions0.c -------------------------------------------------------------------------------- /tests/style/functions/functions0.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/functions/functions1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/functions/functions1.c -------------------------------------------------------------------------------- /tests/style/functions/functions1.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/functions/functions1.expected -------------------------------------------------------------------------------- /tests/style/functions/functions2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/functions/functions2.c -------------------------------------------------------------------------------- /tests/style/functions/functions2.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/functions/functions3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/functions/functions3.c -------------------------------------------------------------------------------- /tests/style/functions/functions3.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/functions/functions3.expected -------------------------------------------------------------------------------- /tests/style/functions/functions4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/functions/functions4.c -------------------------------------------------------------------------------- /tests/style/functions/functions4.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/functions/functions4.expected -------------------------------------------------------------------------------- /tests/style/functions/functions5.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/functions/functions5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/functions/functions5.h -------------------------------------------------------------------------------- /tests/style/functions/functions6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/functions/functions6.c -------------------------------------------------------------------------------- /tests/style/functions/functions6.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/functions/functions6.expected -------------------------------------------------------------------------------- /tests/style/headers/headers0.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/headers/headers0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/headers/headers0.h -------------------------------------------------------------------------------- /tests/style/headers/headers1.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/headers/headers1.expected -------------------------------------------------------------------------------- /tests/style/headers/headers1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/headers/headers1.h -------------------------------------------------------------------------------- /tests/style/headers/headers2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/headers/headers2.c -------------------------------------------------------------------------------- /tests/style/headers/headers2.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/headers/headers2.expected -------------------------------------------------------------------------------- /tests/style/headers/headers3.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/headers/headers3.expected -------------------------------------------------------------------------------- /tests/style/headers/headers3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/headers/headers3.h -------------------------------------------------------------------------------- /tests/style/headers/headers4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/headers/headers4.c -------------------------------------------------------------------------------- /tests/style/headers/headers4.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/indentation/indentation0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/indentation/indentation0.c -------------------------------------------------------------------------------- /tests/style/indentation/indentation0.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/indentation/indentation0.expected -------------------------------------------------------------------------------- /tests/style/line_break/line_break0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/line_break/line_break0.c -------------------------------------------------------------------------------- /tests/style/line_break/line_break0.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/line_break/line_break0.expected -------------------------------------------------------------------------------- /tests/style/line_break/line_break1.c: -------------------------------------------------------------------------------- 1 | int func0(void) 2 | { 3 | return (1); 4 | } 5 | -------------------------------------------------------------------------------- /tests/style/line_break/line_break1.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/line_break/line_break1.expected -------------------------------------------------------------------------------- /tests/style/line_break/line_break2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/line_break/line_break2.c -------------------------------------------------------------------------------- /tests/style/line_break/line_break2.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/line_break/line_break2.expected -------------------------------------------------------------------------------- /tests/style/line_break/line_break3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/line_break/line_break3.c -------------------------------------------------------------------------------- /tests/style/line_break/line_break3.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/line_break/line_break4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/line_break/line_break4.c -------------------------------------------------------------------------------- /tests/style/line_break/line_break4.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/line_break/line_break5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/line_break/line_break5.c -------------------------------------------------------------------------------- /tests/style/line_break/line_break5.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/spaces/spaces0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/spaces/spaces0.c -------------------------------------------------------------------------------- /tests/style/spaces/spaces0.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/spaces/spaces1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/spaces/spaces1.c -------------------------------------------------------------------------------- /tests/style/spaces/spaces1.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/spaces/spaces1.expected -------------------------------------------------------------------------------- /tests/style/spaces/spaces2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/spaces/spaces2.c -------------------------------------------------------------------------------- /tests/style/spaces/spaces2.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/spaces/spaces2.expected -------------------------------------------------------------------------------- /tests/style/spaces/spaces3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/spaces/spaces3.c -------------------------------------------------------------------------------- /tests/style/spaces/spaces3.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/spaces/spaces3.expected -------------------------------------------------------------------------------- /tests/style/spaces/spaces4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/spaces/spaces4.c -------------------------------------------------------------------------------- /tests/style/spaces/spaces4.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/spaces/spaces5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/spaces/spaces5.c -------------------------------------------------------------------------------- /tests/style/spaces/spaces5.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/spaces/spaces6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/spaces/spaces6.c -------------------------------------------------------------------------------- /tests/style/spaces/spaces6.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/spaces/spaces6.expected -------------------------------------------------------------------------------- /tests/style/variables/variables0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/variables/variables0.c -------------------------------------------------------------------------------- /tests/style/variables/variables0.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/variables/variables0.expected -------------------------------------------------------------------------------- /tests/style/variables/variables1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/variables/variables1.c -------------------------------------------------------------------------------- /tests/style/variables/variables1.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/variables/variables1.expected -------------------------------------------------------------------------------- /tests/style/variables/variables2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/variables/variables2.c -------------------------------------------------------------------------------- /tests/style/variables/variables2.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/style/variables/variables3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/variables/variables3.c -------------------------------------------------------------------------------- /tests/style/variables/variables3.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/variables/variables3.expected -------------------------------------------------------------------------------- /tests/style/variables/variables4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/Betty/HEAD/tests/style/variables/variables4.c -------------------------------------------------------------------------------- /tests/style/variables/variables4.expected: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------