From owner-cvs-all Wed Jan 9 5:43:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37B2F37B427; Wed, 9 Jan 2002 05:43:32 -0800 (PST) Received: (from nik@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g09DhWK88672; Wed, 9 Jan 2002 05:43:32 -0800 (PST) (envelope-from nik) Message-Id: <200201091343.g09DhWK88672@freefall.freebsd.org> From: Nik Clayton Date: Wed, 9 Jan 2002 05:43:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale Makefile.inc ctype.3 digittoint.3 isascii.3 isblank.3 isdigit.3 isxdigit.3 toascii.3 tolower.3 toupper.3 X-FreeBSD-CVS-Branch: HEAD 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 nik 2002/01/09 05:43:32 PST Modified files: lib/libc/locale Makefile.inc ctype.3 isascii.3 isblank.3 isdigit.3 isxdigit.3 toascii.3 tolower.3 toupper.3 Added files: lib/libc/locale digittoint.3 Log: From the PR: 1. ctype.h defines digittoint(), isnumber() and ishexnmber(), yet they are not documented in any of the manpages. 2. The ctype manpage references a non-existent manpage for digittoint(). 3. The isascii() manpage claims it is standards compliant, when it isn't. 4. isblank() claims it is _not_ standards compliant, when it is. Fix by including the appropriate .Nm entries, and with a new digittoint.3 page. PR: docs/26451 Submitted by: Adrian Filipi-Martin Revision Changes Path 1.21 +3 -1 src/lib/libc/locale/Makefile.inc 1.10 +8 -2 src/lib/libc/locale/ctype.3 1.1 +76 -0 src/lib/libc/locale/digittoint.3 (new) 1.12 +1 -6 src/lib/libc/locale/isascii.3 1.11 +4 -0 src/lib/libc/locale/isblank.3 1.15 +3 -1 src/lib/libc/locale/isdigit.3 1.15 +3 -1 src/lib/libc/locale/isxdigit.3 1.7 +2 -1 src/lib/libc/locale/toascii.3 1.12 +2 -1 src/lib/libc/locale/tolower.3 1.12 +2 -1 src/lib/libc/locale/toupper.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message