home *** CD-ROM | disk | FTP | other *** search
- /*
- (C) 1995-96 AROS - The Amiga Replacement OS
- $Id: vprintf.c,v 1.2 1996/12/11 11:22:37 aros Exp $
-
- Desc: Implementation of vprintf()
- Lang: english
- */
-
- /*****************************************************************************
-
- NAME */
- #include <stdio.h>
- #include <stdarg.h>
-
- int vprintf (
-
- /* SYNOPSIS */
- const char * format,
- va_list args)
-
- /* FUNCTION
- Format a list of arguments and print them on the standard output.
-
- INPUTS
- format - A printf() format string.
- args - A list of arguments for the format string.
-
- RESULT
- The number of characters written.
-
- NOTES
-
- EXAMPLE
-
- BUGS
-
- SEE ALSO
-
- INTERNALS
-
- HISTORY
- 06.12.1996 digulla created
-
- ******************************************************************************/
- {
- return vfprintf (stdout, format, args);
- } /* vprintf */
-
-