This section contains some miscellaneous do's and don'ts.
abool = bbool;
if (abool) { ...
When embedded assignment is used, make the test explicit
so that it doesn't get "fixed" later.
while ((abool = bbool) != FALSE) { ...
while (abool = bbool) { ... /* VALUSED */
while (abool = bbool, abool) { ...
contents
ANSI C
Lint