From owner-cvs-all Mon Sep 23 5:40: 9 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 80D4B37B401; Mon, 23 Sep 2002 05:40:08 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 418D443E6E; Mon, 23 Sep 2002 05:40:08 -0700 (PDT) (envelope-from tjr@FreeBSD.org) Received: from freefall.freebsd.org (tjr@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g8NCe7Co096699; Mon, 23 Sep 2002 05:40:08 -0700 (PDT) (envelope-from tjr@freefall.freebsd.org) Received: (from tjr@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g8NCe7hP096698; Mon, 23 Sep 2002 05:40:07 -0700 (PDT) Message-Id: <200209231240.g8NCe7hP096698@freefall.freebsd.org> From: "Tim J. Robbins" Date: Mon, 23 Sep 2002 05:40:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include wchar.h src/lib/libc/stdio Makefile.inc fwscanf.c local.h swscanf.c vfwscanf.c vswscanf.c vwscanf.c wscanf.3 wscanf.c 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 tjr 2002/09/23 05:40:07 PDT Modified files: include wchar.h lib/libc/stdio Makefile.inc local.h Added files: lib/libc/stdio fwscanf.c swscanf.c vfwscanf.c vswscanf.c vwscanf.c wscanf.3 wscanf.c Log: Add implementations of wscanf() and related functions: fwscanf(), swscanf(), vfwscanf(), vswscanf(), vwscanf(). As the name suggests, these are wide- character versions of the scanf() family of functions. Revision Changes Path 1.30 +8 -0 src/include/wchar.h 1.25 +11 -6 src/lib/libc/stdio/Makefile.inc 1.1 +45 -0 src/lib/libc/stdio/fwscanf.c (new) 1.19 +2 -0 src/lib/libc/stdio/local.h 1.1 +45 -0 src/lib/libc/stdio/swscanf.c (new) 1.1 +748 -0 src/lib/libc/stdio/vfwscanf.c (new) 1.1 +98 -0 src/lib/libc/stdio/vswscanf.c (new) 1.1 +39 -0 src/lib/libc/stdio/vwscanf.c (new) 1.1 +497 -0 src/lib/libc/stdio/wscanf.3 (new) 1.1 +45 -0 src/lib/libc/stdio/wscanf.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message