File: CODINGSTYLE

package info (click to toggle)
gbsplay 0.0.93-3
  • links: PTS
  • area: main
  • in suites: buster
  • size: 488 kB
  • sloc: ansic: 5,581; sh: 861; makefile: 358
file content (11 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
The preferred coding style for this project is the Linux coding style, with
one exception, namely breaking of long lines, which should be done so that
the users tab width preference does not matter:

void foo(void)
{
	if (bar)
		printf("Lorem ipsum dolor sit amet, consectetuer adipiscing "
		       "elit, sed diam nonummy nibh euismod tincidunt ut "
		       "laoreet dolore magna aliquam erat volutpat.");
}