New modules 'vfscanf', 'vscanf'.
authorBruno Haible <bruno@clisp.org>
Sat, 30 Apr 2011 12:53:35 +0000 (14:53 +0200)
committerBruno Haible <bruno@clisp.org>
Sat, 30 Apr 2011 12:53:35 +0000 (14:53 +0200)
* modules/vfscanf: New file.
* modules/vscanf: New file.
* m4/stdio_h.m4 (gl_STDIO_H): Don't set GNULIB_VFSCANF, GNULIB_VSCANF
here.
* doc/posix-functions/vfscanf.texi: Mention module 'vfscanf'.
* doc/posix-functions/vscanf.texi: Mention module 'vscanf'.

ChangeLog
doc/posix-functions/vfscanf.texi
doc/posix-functions/vscanf.texi
m4/stdio_h.m4
modules/vfscanf [new file with mode: 0644]
modules/vscanf [new file with mode: 0644]

index 1c39c2566409fdf4d25b3c639907cd1be93afdff..70a9b828f18820965050e20ed4098d87ab0ed276 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2011-04-30  Bruno Haible  <bruno@clisp.org>
+
+       New modules 'vfscanf', 'vscanf'.
+       * modules/vfscanf: New file.
+       * modules/vscanf: New file.
+       * m4/stdio_h.m4 (gl_STDIO_H): Don't set GNULIB_VFSCANF, GNULIB_VSCANF
+       here.
+       * doc/posix-functions/vfscanf.texi: Mention module 'vfscanf'.
+       * doc/posix-functions/vscanf.texi: Mention module 'vscanf'.
+
 2011-04-30  Bruno Haible  <bruno@clisp.org>
 
        passfd: Add comments.
index bbdfe06e419f7fdbd04017c964753aecba897c68..d051e6d0c71ce06c57bc1c9f2381d259e3428f79 100644 (file)
@@ -4,9 +4,9 @@
 
 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vfscanf.html}
 
-Gnulib module: stdio, nonblocking
+Gnulib module: vfscanf, nonblocking
 
-Portability problems fixed by Gnulib module @code{stdio}, together with module @code{nonblocking}:
+Portability problems fixed by Gnulib module @code{vfscanf}, together with module @code{nonblocking}:
 @itemize
 @item
 When reading from a non-blocking pipe whose buffer is empty, this function
index 0568ab45c4fd4b59222ef1b513367211b4b612fc..feff03ac5c739cc425c587629393c7358de732db 100644 (file)
@@ -4,9 +4,9 @@
 
 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vscanf.html}
 
-Gnulib module: stdio, nonblocking
+Gnulib module: vscanf, nonblocking
 
-Portability problems fixed by Gnulib module @code{stdio}, together with module @code{nonblocking}:
+Portability problems fixed by Gnulib module @code{vscanf}, together with module @code{nonblocking}:
 @itemize
 @item
 When reading from a non-blocking pipe whose buffer is empty, this function
index 8b013c2f352047aed82035ee27c6cdbc0dc59bbf..a8326f3c3490ea7f46c187e83c71ffe14d43b387 100644 (file)
@@ -1,4 +1,4 @@
-# stdio_h.m4 serial 36
+# stdio_h.m4 serial 37
 dnl Copyright (C) 2007-2011 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -14,8 +14,6 @@ AC_DEFUN([gl_STDIO_H],
   dnl <stdio.h> likely needs them.
   GNULIB_FSCANF=1
   GNULIB_SCANF=1
-  GNULIB_VFSCANF=1
-  GNULIB_VSCANF=1
   GNULIB_FGETC=1
   GNULIB_GETC=1
   GNULIB_GETCHAR=1
diff --git a/modules/vfscanf b/modules/vfscanf
new file mode 100644 (file)
index 0000000..c2d6a8d
--- /dev/null
@@ -0,0 +1,21 @@
+Description:
+vfscanf() function: parse formatted text from a stream
+
+Files:
+
+Depends-on:
+stdio
+
+configure.ac:
+gl_STDIO_MODULE_INDICATOR([vfscanf])
+
+Makefile.am:
+
+Include:
+<stdio.h>
+
+License:
+LGPL
+
+Maintainer:
+Bruno Haible
diff --git a/modules/vscanf b/modules/vscanf
new file mode 100644 (file)
index 0000000..cf1d8c2
--- /dev/null
@@ -0,0 +1,21 @@
+Description:
+vscanf() function: parse formatted text from standard input
+
+Files:
+
+Depends-on:
+stdio
+
+configure.ac:
+gl_STDIO_MODULE_INDICATOR([vscanf])
+
+Makefile.am:
+
+Include:
+<stdio.h>
+
+License:
+LGPL
+
+Maintainer:
+Bruno Haible