coding standards

Luke Kenneth Casson Leighton (lkcl@switchboard.net)
Fri, 8 May 1998 11:30:59 +0000 (GMT)

Date:	Fri, 8 May 1998 11:30:59 +0000 (GMT)
From:	Luke Kenneth Casson Leighton <lkcl@switchboard.net>
To:	Jean-Francois Micouleau <Jean-Francois.Micouleau@utc.fr>
Subject: coding standards

jean-f (and others)

if (boolean == True) is bad: this should be if (boolean)

if (boolean)
{
flag = True;
}
else
{
flag = False;
}

should be flag = (boolean);

void *ptr = 0 is bad: this should be void *ptr = NULL

etc...