1996-08-22 16:55:15 +00:00
|
|
|
.\" Copyright (c) 1995 FreeBSD Inc.
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL [your name] OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
1997-12-07 20:25:45 +00:00
|
|
|
.\" $Id: style.9,v 1.21 1997/12/07 20:19:20 wollman Exp $
|
1996-08-22 16:55:15 +00:00
|
|
|
.\"
|
1995-12-14 10:50:27 +00:00
|
|
|
.Dd December 14, 1995
|
|
|
|
.Dt STYLE 9
|
1997-05-27 10:00:08 +00:00
|
|
|
.Os FreeBSD
|
1995-12-14 10:50:27 +00:00
|
|
|
.Sh NAME
|
1996-02-09 16:20:10 +00:00
|
|
|
.Nm style
|
1995-12-14 10:50:27 +00:00
|
|
|
.Nd "Kernel source file style guide"
|
|
|
|
.Sh DESCRIPTION
|
1997-05-27 10:00:08 +00:00
|
|
|
This file specifies the preferred style for kernel source files in the
|
1997-03-21 20:14:15 +00:00
|
|
|
.Tn FreeBSD
|
1997-05-27 10:00:08 +00:00
|
|
|
source tree. It is also a guide for preferred user land code style.
|
1996-03-31 22:36:14 +00:00
|
|
|
.Bd -literal -offset 0i
|
1995-12-14 10:50:27 +00:00
|
|
|
/*
|
1997-05-27 10:00:08 +00:00
|
|
|
* Style guide for the FreeBSD KNF (Kernel Normal Form).
|
1995-12-14 10:50:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* VERY important single-line comments look like this.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Most single-line comments look like this. */
|
|
|
|
|
|
|
|
/*
|
1995-12-21 18:35:19 +00:00
|
|
|
* Multi-line comments look like this. Make them real sentences. Fill
|
|
|
|
* them so they look like real paragraphs.
|
1995-12-14 10:50:27 +00:00
|
|
|
*/
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
1997-11-12 06:29:10 +00:00
|
|
|
Kernel include files (i.e. sys/*.h) come first; normally, you'll need
|
|
|
|
<sys/types.h>
|
1996-03-31 22:36:14 +00:00
|
|
|
OR <sys/param.h>, but not both! <sys/types.h> includes <sys/cdefs.h>,
|
|
|
|
and it's okay to depend on that.
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-21 18:35:19 +00:00
|
|
|
#include <sys/types.h> /* Non-local includes in brackets. */
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
If it's a network program, put the network include files next.
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-14 10:50:27 +00:00
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_dl.h>
|
|
|
|
#include <net/route.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <protocols/rwhod.h>
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Then there's a blank line, followed by the /usr include files.
|
|
|
|
The /usr include files should be sorted!
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-14 10:50:27 +00:00
|
|
|
#include <stdio.h>
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Global pathnames are defined in /usr/include/paths.h. Pathnames local
|
|
|
|
to the program go in pathnames.h in the local directory.
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-14 10:50:27 +00:00
|
|
|
#include <paths.h>
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Then, there's a blank line, and the user include files.
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-21 18:35:19 +00:00
|
|
|
#include "pathnames.h" /* Local includes in double quotes. */
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Macros are capitalized, parenthesized, and should avoid side-effects.
|
|
|
|
If they are an inline expansion of a function, the function is defined
|
|
|
|
all in lowercase, the macro has the same name all in uppercase. If the
|
|
|
|
macro needs more than a single line, use braces. Right-justify the
|
|
|
|
backslashes, it makes it easier to read.
|
1997-12-07 20:19:20 +00:00
|
|
|
If the macro encapsulates a compound statement, enclose it in a
|
|
|
|
.Dq Li do
|
|
|
|
loop,
|
|
|
|
so that it can safely be used in
|
|
|
|
.Dq Li if
|
|
|
|
statements.
|
1997-12-07 20:25:45 +00:00
|
|
|
Any final statement-terminating semicolon should be
|
1997-12-07 20:19:20 +00:00
|
|
|
supplied by the macro invocation rather than the macro, to make parsing easier
|
|
|
|
for pretty-printers and editors.
|
1996-03-31 22:36:14 +00:00
|
|
|
.Bd -literal -offset 0i
|
1997-12-07 20:19:20 +00:00
|
|
|
#define MACRO(x, y) do { \e
|
1995-12-21 18:35:19 +00:00
|
|
|
variable = (x) + (y); \e
|
|
|
|
(y) += 2; \e
|
1997-12-07 20:19:20 +00:00
|
|
|
} while(0)
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
1997-12-07 20:19:20 +00:00
|
|
|
Enumeration values are all uppercase.
|
1996-03-31 22:36:14 +00:00
|
|
|
.Bd -literal -offset 0i
|
1995-12-14 10:50:27 +00:00
|
|
|
enum enumtype { ONE, TWO } et;
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
When declaring variables in structures, declare them sorted by use, then
|
|
|
|
by size, and then by alphabetical order. The first category normally
|
|
|
|
doesn't apply, but there are exceptions. Each one gets its own line.
|
|
|
|
Put a tab after the first word, i.e. use
|
|
|
|
.Ql int^Ix;
|
|
|
|
and
|
|
|
|
.Ql struct^Ifoo *x; .
|
|
|
|
.Pp
|
|
|
|
Major structures should be declared at the top of the file in which they
|
|
|
|
are used, or in separate header files, if they are used in multiple
|
|
|
|
source files. Use of the structures should be by separate declarations
|
|
|
|
and should be "extern" if they are declared in a header file.
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-14 10:50:27 +00:00
|
|
|
struct foo {
|
1995-12-21 18:35:19 +00:00
|
|
|
struct foo *next; /* List of active foo */
|
|
|
|
struct mumble amumble; /* Comment for mumble */
|
|
|
|
int bar;
|
1995-12-14 10:50:27 +00:00
|
|
|
};
|
1995-12-21 18:35:19 +00:00
|
|
|
struct foo *foohead; /* Head of global foo list */
|
1997-12-07 19:53:44 +00:00
|
|
|
.Ed
|
1997-12-07 20:19:20 +00:00
|
|
|
.Pp
|
1997-12-07 19:53:44 +00:00
|
|
|
Use
|
|
|
|
.Xr queue 3
|
|
|
|
macros rather than rolling your own lists, whenever possible. Thus,
|
|
|
|
the previous example would be better written:
|
|
|
|
.Bd -literal -offset 0i
|
|
|
|
#include <sys/queue.h>
|
|
|
|
struct foo {
|
|
|
|
LIST_ENTRY(foo) link; /* Queue macro glue for foo lists */
|
|
|
|
struct mumble amumble; /* Comment for mumble */
|
|
|
|
int bar;
|
|
|
|
};
|
|
|
|
LIST_HEAD(, foo) foohead; /* Head of global foo list */
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Avoid using typedefs for structure types. This makes it impossible
|
|
|
|
for applications to use pointers to such a structure opaquely, which
|
|
|
|
is both possible and beneficial when using an ordinary struct tag.
|
|
|
|
When convention requires a typedef, make its name match the struct
|
|
|
|
tag. Avoid typedefs ending in
|
|
|
|
.Dq Li \&_t ,
|
|
|
|
except as specified in Standard C or by
|
|
|
|
.Tn POSIX .
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-14 10:50:27 +00:00
|
|
|
/* Make the structure name match the typedef. */
|
|
|
|
typedef struct _bar {
|
1995-12-21 18:35:19 +00:00
|
|
|
int level;
|
1995-12-14 10:50:27 +00:00
|
|
|
} BAR;
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
All functions are prototyped somewhere.
|
|
|
|
.Pp
|
|
|
|
Function prototypes for private functions (i.e. functions not used
|
|
|
|
elsewhere) go at the top of the first source module. Functions
|
|
|
|
local to one source module should be declared
|
|
|
|
.Ql static .
|
|
|
|
.Pp
|
|
|
|
Functions used from other parts of the kernel are prototyped in the
|
|
|
|
relevant include file.
|
|
|
|
.Pp
|
|
|
|
Functions that are used locally in more than one module go into a
|
|
|
|
separate header file, e.g.
|
|
|
|
.Pa extern.h .
|
|
|
|
.Pp
|
|
|
|
Only use the __P macro from the include file <sys/cdefs.h> if the source
|
|
|
|
file in general is (to be) compilable with a K&R Old testament compiler.
|
1997-05-27 10:00:08 +00:00
|
|
|
Use of the __P macro in new code is discouraged, although modifications
|
|
|
|
to existing files should be consistent with that file's conventions.
|
1996-03-31 22:36:14 +00:00
|
|
|
.Pp
|
1997-05-27 10:00:08 +00:00
|
|
|
In general code can be considered
|
|
|
|
.Dq new code
|
|
|
|
when it makes up about 50% or more of the file[s] involved. This is enough
|
|
|
|
to break precedents in the existing code and use the current style guidelines.
|
|
|
|
.Pp
|
|
|
|
The kernel has a name associated with parameter types, e.g., in the kernel
|
1996-03-31 22:36:14 +00:00
|
|
|
use:
|
|
|
|
.Bd -literal -offset 0i
|
1997-05-27 10:00:08 +00:00
|
|
|
void function(int fd);
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
1997-05-27 10:00:08 +00:00
|
|
|
In header files visible to user land applications, prototypes that are
|
|
|
|
visible must use either protected names or no names with the types. It
|
|
|
|
is preferable to use protected names.
|
|
|
|
e.g., use:
|
1996-03-31 22:36:14 +00:00
|
|
|
.Bd -literal -offset 0i
|
1997-05-27 10:00:08 +00:00
|
|
|
void function(int);
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
or:
|
|
|
|
.Bd -literal -offset 0i
|
|
|
|
void function(int _fd);
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Prototypes may have an extra space after a tab to enable function names
|
|
|
|
to line up:
|
|
|
|
.Bd -literal -offset 0i
|
|
|
|
static char *function(int _arg, const char *_arg2, struct foo *_arg3,
|
|
|
|
struct bar *_arg4);
|
|
|
|
static void usage(void);
|
1995-12-14 10:50:27 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* All major routines should have a comment briefly describing what
|
|
|
|
* they do. The comment before the "main" routine should describe
|
|
|
|
* what the program does.
|
|
|
|
*/
|
|
|
|
int
|
1997-05-27 10:00:08 +00:00
|
|
|
main(int argc, char *argv[])
|
1995-12-14 10:50:27 +00:00
|
|
|
{
|
1995-12-21 18:35:19 +00:00
|
|
|
long num;
|
|
|
|
int ch;
|
|
|
|
char *ep;
|
|
|
|
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
For consistency, getopt should be used to parse options. Options
|
|
|
|
should be sorted in the getopt call and the switch statement, unless
|
|
|
|
parts of the switch cascade. Elements in a switch statement that
|
|
|
|
cascade should have a FALLTHROUGH comment. Numerical arguments
|
|
|
|
should be checked for accuracy. Code that cannot be reached should
|
|
|
|
have a NOTREACHED comment.
|
|
|
|
.Bd -literal -offset 0i
|
1997-04-09 19:03:14 +00:00
|
|
|
while ((ch = getopt(argc, argv, "abn")) != -1)
|
1995-12-21 18:35:19 +00:00
|
|
|
switch (ch) { /* Indent the switch. */
|
|
|
|
case 'a': /* Don't indent the case. */
|
|
|
|
aflag = 1;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 'b':
|
|
|
|
bflag = 1;
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
num = strtol(optarg, &ep, 10);
|
|
|
|
if (num <= 0 || *ep != '\e0')
|
|
|
|
err("illegal number -- %s", optarg);
|
|
|
|
break;
|
1996-08-24 10:49:09 +00:00
|
|
|
case '?':
|
1995-12-21 18:35:19 +00:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
1997-05-27 10:00:08 +00:00
|
|
|
Space after keywords (if, while, for, return, switch). No braces are
|
1996-03-31 22:36:14 +00:00
|
|
|
used for control statements with zero or only a single statement.
|
|
|
|
Forever loops are done with for's, not while's.
|
|
|
|
.Bd -literal -offset 0i
|
1997-05-27 10:00:08 +00:00
|
|
|
for (p = buf; *p != '\e0'; ++p)
|
|
|
|
; /* nothing */
|
1995-12-21 18:35:19 +00:00
|
|
|
for (;;)
|
|
|
|
stmt;
|
1997-05-27 10:00:08 +00:00
|
|
|
if (val != NULL)
|
|
|
|
val = realloc(val, newsize);
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Parts of a for loop may be left empty. Don't put declarations
|
|
|
|
inside blocks unless the routine is unusually complicated.
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-21 18:35:19 +00:00
|
|
|
for (; cnt < 15; cnt++) {
|
|
|
|
stmt1;
|
|
|
|
stmt2;
|
|
|
|
}
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
1997-05-27 10:00:08 +00:00
|
|
|
Indentation is an 8 character tab.
|
1996-03-31 22:36:14 +00:00
|
|
|
Second level indents are four spaces.
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-21 18:35:19 +00:00
|
|
|
while (cnt < 20)
|
1996-04-07 08:37:54 +00:00
|
|
|
z = a + really + long + statement + that + needs +
|
1996-03-31 22:36:14 +00:00
|
|
|
two lines + gets + indented + four + spaces +
|
|
|
|
on + the + second + and + subsequent + lines.
|
|
|
|
.Ed
|
|
|
|
.Pp
|
1997-05-27 10:00:08 +00:00
|
|
|
Do not add whitespace at the end of a line, and only use tabs then spaces
|
|
|
|
to form the indentation. Do not use more spaces than a tab will produce
|
|
|
|
and do not use spaces in front of tabs.
|
|
|
|
.Pp
|
1996-03-31 22:36:14 +00:00
|
|
|
Closing and opening braces go on the same line as the else.
|
|
|
|
Don't add braces that aren't necessary.
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-21 18:35:19 +00:00
|
|
|
if (test)
|
|
|
|
stmt;
|
|
|
|
else if (bar) {
|
|
|
|
stmt;
|
|
|
|
stmt;
|
|
|
|
} else
|
|
|
|
stmt;
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
1997-05-27 10:00:08 +00:00
|
|
|
No spaces after function names. Commas have a space after them. No spaces
|
|
|
|
after
|
|
|
|
.Sq \&(
|
|
|
|
or
|
|
|
|
.Sq \&[
|
|
|
|
or preceding
|
|
|
|
.Sq \&]
|
|
|
|
or
|
|
|
|
.Sq \&)
|
|
|
|
characters.
|
1996-03-31 22:36:14 +00:00
|
|
|
.Bd -literal -offset 0i
|
1995-12-21 18:35:19 +00:00
|
|
|
if (error = function(a1, a2))
|
|
|
|
exit(error);
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Unary operators don't require spaces, binary operators do. Don't
|
1997-12-07 20:19:20 +00:00
|
|
|
use parentheses unless they're required for precedence, or the
|
1996-03-31 22:36:14 +00:00
|
|
|
statement is really confusing without them.
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-21 18:35:19 +00:00
|
|
|
a = b->c[0] + ~d == (e || f) || g && h ? i : j >> 1;
|
|
|
|
k = !(l & FLAGS);
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Exits should be 0 on success, or according to the predefined
|
|
|
|
values in
|
|
|
|
.Xr sysexits 3 .
|
|
|
|
.Bd -literal -offset 0i
|
|
|
|
exit(EX_OK); /*
|
|
|
|
* Avoid obvious comments such as
|
|
|
|
* "Exit 0 on success."
|
|
|
|
*/
|
1995-12-14 10:50:27 +00:00
|
|
|
}
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
The function type should be on a line by itself
|
1996-04-07 08:37:54 +00:00
|
|
|
preceding the function.
|
1996-03-31 22:36:14 +00:00
|
|
|
.Bd -literal -offset 0i
|
1995-12-14 10:50:27 +00:00
|
|
|
static char *
|
1997-05-27 10:00:08 +00:00
|
|
|
function(int a1, int a2, float fl, int a4)
|
1995-12-14 10:50:27 +00:00
|
|
|
{
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
When declaring variables in functions declare them sorted by size,
|
|
|
|
then in alphabetical order; multiple ones per line are okay.
|
|
|
|
Declaring functions inside functions is not recommendable, since their
|
|
|
|
linkage scope is always global. If a line overflows reuse the type
|
|
|
|
keyword.
|
|
|
|
.Pp
|
|
|
|
Be careful to not obfuscate the code by initializing variables in
|
|
|
|
the declarations. Use this feature only thoughtfully.
|
1997-05-27 10:00:08 +00:00
|
|
|
DO NOT use function calls in initializers!
|
1996-03-31 22:36:14 +00:00
|
|
|
.Bd -literal -offset 0i
|
1997-05-27 10:00:08 +00:00
|
|
|
struct foo one, *two;
|
|
|
|
double three;
|
|
|
|
int *four, five;
|
|
|
|
char *six, seven, eight, nine, ten, eleven, twelve;
|
|
|
|
|
|
|
|
four = myfunction();
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
1997-05-27 10:00:08 +00:00
|
|
|
Do not declare functions inside other functions; ANSI C says that
|
|
|
|
such declarations have file scope regardless of the nesting of the
|
|
|
|
declaration. Hiding file declarations in what appears to be a local
|
|
|
|
scope is undesirable and will elicit complaints from a good compiler.
|
|
|
|
.Pp
|
|
|
|
Casts and sizeof's are not followed by a space. Note that
|
|
|
|
.Xr indent 1
|
|
|
|
does not understand this rule.
|
1996-07-17 12:32:18 +00:00
|
|
|
.Pp
|
|
|
|
NULL is the preferred null pointer constant. Use NULL instead of
|
|
|
|
(type *)0 or (type *)NULL in contexts where the compiler knows the
|
|
|
|
type, e.g., in assignments. Use (type *)NULL in other contexts,
|
|
|
|
in particular for all function args. (Casting is essential for
|
|
|
|
varadic args and is necessary for other args if the function prototype
|
1997-05-27 10:00:08 +00:00
|
|
|
might not be in scope.)
|
1996-07-17 12:32:18 +00:00
|
|
|
Test pointers
|
|
|
|
against NULL, e.g., use:
|
1996-03-31 22:36:14 +00:00
|
|
|
.Bd -literal -offset 0i
|
|
|
|
(p = f()) == NULL
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
not:
|
|
|
|
.Bd -literal -offset 0i
|
|
|
|
!(p = f())
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Don't use '!' for tests unless it's a boolean, e.g. use
|
|
|
|
.Bd -literal -offset 0i
|
|
|
|
if (*p == '\e0')
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
not
|
|
|
|
.Bd -literal -offset 0i
|
|
|
|
if (!*p)
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Routines returning void * should not have their return values cast
|
|
|
|
to any pointer type.
|
|
|
|
.Pp
|
|
|
|
Use
|
1996-04-07 00:06:21 +00:00
|
|
|
.Xr err 3
|
|
|
|
or
|
|
|
|
.Xr warn 3 ,
|
1996-03-31 22:36:14 +00:00
|
|
|
don't roll your own!
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-21 18:35:19 +00:00
|
|
|
if ((four = malloc(sizeof(struct foo))) == NULL)
|
1996-07-17 12:32:18 +00:00
|
|
|
err(1, (char *)NULL);
|
1995-12-21 18:35:19 +00:00
|
|
|
if ((six = (int *)overflow()) == NULL)
|
|
|
|
errx(1, "Number overflowed.");
|
|
|
|
return (eight);
|
1995-12-14 10:50:27 +00:00
|
|
|
}
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
1997-05-27 10:00:08 +00:00
|
|
|
Old-style function declarations look like this:
|
1996-03-31 22:36:14 +00:00
|
|
|
.Bd -literal -offset 0i
|
1997-05-27 10:00:08 +00:00
|
|
|
static char *
|
|
|
|
function(a1, a2, fl, a4)
|
|
|
|
int a1, a2; /* Declare ints, too, don't default them. */
|
|
|
|
float fl; /* Beware double vs. float prototype differences. */
|
|
|
|
int a4; /* List in order declared. */
|
1995-12-14 10:50:27 +00:00
|
|
|
{
|
1996-03-31 22:36:14 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
1997-05-27 10:00:08 +00:00
|
|
|
Use ANSI function declarations unless you explicitly need K&R compatability.
|
|
|
|
.Pp
|
1996-03-31 22:36:14 +00:00
|
|
|
Variable numbers of arguments should look like this.
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-14 10:50:27 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
void
|
|
|
|
vaf(const char *fmt, ...)
|
|
|
|
{
|
1995-12-21 18:35:19 +00:00
|
|
|
va_list ap;
|
1997-05-27 10:00:08 +00:00
|
|
|
|
1995-12-21 18:35:19 +00:00
|
|
|
va_start(ap, fmt);
|
|
|
|
STUFF;
|
1997-05-27 10:00:08 +00:00
|
|
|
va_end(ap);
|
|
|
|
/* No return needed for void functions. */
|
1995-12-14 10:50:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage()
|
1996-03-31 22:36:14 +00:00
|
|
|
{
|
|
|
|
/* Insert an empty line if the function has no local variables. */
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Use
|
|
|
|
.Xr printf 3 ,
|
|
|
|
not fputs/puts/putchar/whatever, it's faster and usually cleaner, not
|
|
|
|
to mention avoiding stupid bugs.
|
|
|
|
.Pp
|
|
|
|
Usage statements should look like the manual pages. Options w/o
|
|
|
|
operands come first, in alphabetical order inside a single set of
|
|
|
|
braces. Followed by options with operands, in alphabetical order,
|
|
|
|
each in braces. Followed by required arguments in the order they
|
|
|
|
are specified, followed by optional arguments in the order they
|
|
|
|
are specified. A bar
|
|
|
|
.Pq Sq \&|
|
|
|
|
separates either/or options/arguments,
|
|
|
|
and multiple options/arguments which are specified together are
|
|
|
|
placed in a single set of braces.
|
|
|
|
.Pp
|
|
|
|
.Bd -ragged -offset 0.3i
|
|
|
|
"usage: f [-ade] [-b b_arg] [-m m_arg] req1 req2 [opt1 [opt2]]\en"
|
|
|
|
"usage: f [-a | -b] [-c [-de] [-n number]]\en"
|
|
|
|
.Ed
|
|
|
|
.Bd -literal -offset 0i
|
1995-12-21 18:35:19 +00:00
|
|
|
(void)fprintf(stderr, "usage: f [-ab]\en");
|
|
|
|
exit(1);
|
1995-12-14 10:50:27 +00:00
|
|
|
}
|
|
|
|
.Ed
|
1996-03-31 22:36:14 +00:00
|
|
|
.Pp
|
1997-05-27 10:00:08 +00:00
|
|
|
New core kernel code should be reasonably compliant with the style guides.
|
|
|
|
The guidelines for third-party maintained modules and device drivers are more
|
|
|
|
relaxed but at a minimum should be internally consistant with their style.
|
|
|
|
.Pp
|
|
|
|
Stylistic changes (including whitespace changes) are hard on the source
|
|
|
|
repository and are to be avoided without good reason. Code that is
|
|
|
|
approximately KNF compliant in the repository must not diverge from
|
|
|
|
compliance.
|
1996-03-31 22:36:14 +00:00
|
|
|
.Sh SEE ALSO
|
1997-05-27 10:00:08 +00:00
|
|
|
.Xr indent 1 ,
|
1996-03-31 22:36:14 +00:00
|
|
|
.Xr err 3 ,
|
1996-12-26 16:16:37 +00:00
|
|
|
.Xr sysexits 3 ,
|
|
|
|
.Xr warn 3
|
1995-12-14 10:50:27 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
This man page is largely based on the src/admin/style/style file from
|
1997-03-21 20:14:15 +00:00
|
|
|
the
|
|
|
|
.Tn BSD
|
1997-05-27 10:00:08 +00:00
|
|
|
4.4-Lite2 release, with updates to reflect the current practice and
|
|
|
|
desire of the
|
1997-03-21 20:14:15 +00:00
|
|
|
.Tn FreeBSD
|
|
|
|
project.
|