From owner-cvs-all Wed Dec 4 9: 5:12 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0678D37B401; Wed, 4 Dec 2002 09:05:12 -0800 (PST) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62CB443EA9; Wed, 4 Dec 2002 09:05:11 -0800 (PST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.6/8.12.6) with ESMTP id gB4H5AlI048435 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Wed, 4 Dec 2002 12:05:10 -0500 (EST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.6/8.12.6/Submit) id gB4H5ATC048432; Wed, 4 Dec 2002 12:05:10 -0500 (EST) (envelope-from wollman) Date: Wed, 4 Dec 2002 12:05:10 -0500 (EST) From: Garrett Wollman Message-Id: <200212041705.gB4H5ATC048432@khavrinen.lcs.mit.edu> To: David Malone Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/unifdef unifdef.1 In-Reply-To: <20021204150932.GA47420@walton.maths.tcd.ie> References: <200212041442.gB4EgnQL042381@repoman.freebsd.org> <20021204150932.GA47420@walton.maths.tcd.ie> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG < said: > I always though it was the NULL pointer, but the nul character, > as given in the ascii man page? You've got that backwards: it's a (not the) null pointer, but the (one and only) NUL character. See ISO 9899 and ANSI X3.64. However, the spelling of NUL (ASCII character zero) is too close to the C macro NULL (which expands to a null pointer constant) and so we do not normally use it. The C Standard, which is character-set independent, also does not use the ASCII name; C merely requires that there be a character with value zero which can safely be used as a string terminator, and likewise for wide characters. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message