Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 223 Bytes

File metadata and controls

10 lines (9 loc) · 223 Bytes

Do not put blank lines inside a function. The perl script splits each block of code by blank lines. If you need to put blank lines, add a comment. For example:

void f()
{
	Some code...
	/* */
	Some other code...
}