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.");
}
