From eddb058643a9878c98f87adfd4d3c30fdcb9d1cb Mon Sep 17 00:00:00 2001 From: Sjur Brændeland Date: Tue, 11 Jan 2011 23:39:30 +0100 Subject: coding-style: Use void if function has no parameters --- doc/coding-style.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'doc/coding-style.txt') diff --git a/doc/coding-style.txt b/doc/coding-style.txt index 3bee2407..40bb36b9 100644 --- a/doc/coding-style.txt +++ b/doc/coding-style.txt @@ -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, -- cgit v1.2.3