From owner-svn-src-all@FreeBSD.ORG Thu Feb 4 11:23:28 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCB6B106566C; Thu, 4 Feb 2010 11:23:28 +0000 (UTC) (envelope-from ru@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B1CC48FC15; Thu, 4 Feb 2010 11:23:28 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o14BNSed001791; Thu, 4 Feb 2010 11:23:28 GMT (envelope-from ru@svn.freebsd.org) Received: (from ru@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o14BNSH0001786; Thu, 4 Feb 2010 11:23:28 GMT (envelope-from ru@svn.freebsd.org) Message-Id: <201002041123.o14BNSH0001786@svn.freebsd.org> From: Ruslan Ermilov Date: Thu, 4 Feb 2010 11:23:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r203485 - head/lib/libc/string X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2010 11:23:29 -0000 Author: ru Date: Thu Feb 4 11:23:28 2010 New Revision: 203485 URL: http://svn.freebsd.org/changeset/base/203485 Log: Mark up "unsigned char". Modified: head/lib/libc/string/memccpy.3 head/lib/libc/string/memchr.3 head/lib/libc/string/memcmp.3 head/lib/libc/string/memset.3 Modified: head/lib/libc/string/memccpy.3 ============================================================================== --- head/lib/libc/string/memccpy.3 Thu Feb 4 08:54:14 2010 (r203484) +++ head/lib/libc/string/memccpy.3 Thu Feb 4 11:23:28 2010 (r203485) @@ -50,7 +50,9 @@ to string .Fa dst . If the character .Fa c -(as converted to an unsigned char) occurs in the string +(as converted to an +.Vt "unsigned char" ) +occurs in the string .Fa src , the copy stops and a pointer to the byte after the copy of .Fa c Modified: head/lib/libc/string/memchr.3 ============================================================================== --- head/lib/libc/string/memchr.3 Thu Feb 4 08:54:14 2010 (r203484) +++ head/lib/libc/string/memchr.3 Thu Feb 4 11:23:28 2010 (r203485) @@ -52,7 +52,8 @@ The function locates the first occurrence of .Fa c -(converted to an unsigned char) +(converted to an +.Vt "unsigned char" ) in string .Fa b . .Pp Modified: head/lib/libc/string/memcmp.3 ============================================================================== --- head/lib/libc/string/memcmp.3 Thu Feb 4 08:54:14 2010 (r203484) +++ head/lib/libc/string/memcmp.3 Thu Feb 4 11:23:28 2010 (r203485) @@ -61,7 +61,9 @@ The function returns zero if the two strings are identical, otherwise returns the difference between the first two differing bytes -(treated as unsigned char values, so that +(treated as +.Vt "unsigned char" +values, so that .Sq Li \e200 is greater than .Sq Li \&\e0 , Modified: head/lib/libc/string/memset.3 ============================================================================== --- head/lib/libc/string/memset.3 Thu Feb 4 08:54:14 2010 (r203484) +++ head/lib/libc/string/memset.3 Thu Feb 4 11:23:28 2010 (r203485) @@ -52,7 +52,9 @@ writes .Fa len bytes of value .Fa c -(converted to an unsigned char) to the string +(converted to an +.Vt "unsigned char" ) +to the string .Fa b . .Sh RETURN VALUES The