coding-style: Use void if function has no parameters

This commit is contained in:
Sjur Brændeland 2011-01-11 23:39:30 +01:00 committed by Marcel Holtmann
parent e51e1243e3
commit eddb058643
1 changed files with 15 additions and 0 deletions

View File

@ -279,6 +279,21 @@ memset(stuff, 0, sizeof(*stuff));
memset(stuff, 0, sizeof *stuff); // Wrong
M15: Use void if function has no parameters
===========================================================
A function with no parameters must use void in the parameter list.
Example:
1)
void foo(void)
{
}
2)
void foo() // Wrong
{
}
O1: Shorten the name
====================
Better to use abbreviation, rather than full name, to name a variable,