cstyle

Section: User Commands (1)
Updated: 28 March 2005

Index

NAME
SYNOPSIS
DESCRIPTION
OPTIONS
NOTES
CONTINUATION CHECKING

Return to Main Contents
 

NAME

cstyle - check for some common stylistic errors in C source files  

SYNOPSIS

cstyle [-chpvCP] [-o constructs] [file...]

 

DESCRIPTION

cstyle inspects C source files (*.c and *.h) for common sylistic errors. It attempts to check for the cstyle documented in http://www.cis.upenn.edu/~lee/06cse480/data/cstyle.ms.pdf. Note that there is much in that document that cannot be checked for; just because your code is cstyle(1) clean does not mean that you've followed Sun's C style. Caveat emptor.

 

OPTIONS

The following options are supported:

-c
Check continuation line indentation inside of functions. Sun's C style states that all statements must be indented to an appropriate tab stop, and any continuation lines after them must be indented exactly four spaces from the start line. This option enables a series of checks designed to find continuation line problems within functions only. The checks have some limitations; see CONTINUATION CHECKING, below.

-h
Performs heuristic checks that are sometimes wrong. Not generally used.

-p
Performs some of the more picky checks. Includes ANSI #else and #endif rules, and tries to detect spaces after casts. Used as part of the putback checks.

-v
Verbose output; includes the text of the line of error, and, for -c, the first statement in the current continuation block.

-C
Ignore errors in header comments (i.e. block comments starting in the first column). Not generally used.

-P
Check for use of non-POSIX types. Historically, types like "u_int" and "u_long" were used, but they are now deprecated in favor of the POSIX types uint_t, ulong_t, etc. This detects any use of the deprecated types. Used as part of the putback checks.

-o constructs
Allow a comma-separated list of additional constructs. Available constructs include:

doxygen
Allow doxygen-style block comments (/** and /*!)

splint
Allow splint-style lint comments (/*@...@*/)

 

NOTES

The cstyle rule for the OS/Net consolidation is that all new files must be -pP clean. For existing files, the following invocations are run against both the old and new files:

cstyle file

cstyle -p file

cstyle -pP file

If the old file gave no errors for one of the invocations, the new file must also give no errors. This way, files can only become more clean.

 

CONTINUATION CHECKING

The continuation checker is a reasonably simple state machine that knows something about how C is laid out, and can match parenthesis, etc. over multiple lines. It does have some limitations:

1.
Preprocessor macros which cause unmatched parenthesis will confuse the checker for that line. To fix this, you'll need to make sure that each branch of the #if statement has balanced parenthesis.

2.
Some cpp macros do not require ;s after them. Any such macros *must* be ALL_CAPS; any lower case letters will cause bad output.

The bad output will generally be corrected after the next ;, {, or }.

Some continuation error messages deserve some additional explanation

multiple statements continued over multiple lines
A multi-line statement which is not broken at statement boundaries. For example:
if (this_is_a_long_variable == another_variable) a =
b + c;

Will trigger this error. Instead, do:

if (this_is_a_long_variable == another_variable)
a = b + c;

empty if/for/while body not on its own line
For visibility, empty bodies for if, for, and while statements should be on their own line. For example:
while (do_something(&x) == 0);

Will trigger this error. Instead, do:

while (do_something(&x) == 0)
;