home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / emu / AROSdev.lha / AROS / compiler / clib / vprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-09  |  849 b   |  49 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: vprintf.c,v 1.2 1996/12/11 11:22:37 aros Exp $
  4.  
  5.     Desc: Implementation of vprintf()
  6.     Lang: english
  7. */
  8.  
  9. /*****************************************************************************
  10.  
  11.     NAME */
  12. #include <stdio.h>
  13. #include <stdarg.h>
  14.  
  15.     int vprintf (
  16.  
  17. /*  SYNOPSIS */
  18.     const char * format,
  19.     va_list      args)
  20.  
  21. /*  FUNCTION
  22.     Format a list of arguments and print them on the standard output.
  23.  
  24.     INPUTS
  25.     format - A printf() format string.
  26.     args - A list of arguments for the format string.
  27.  
  28.     RESULT
  29.     The number of characters written.
  30.  
  31.     NOTES
  32.  
  33.     EXAMPLE
  34.  
  35.     BUGS
  36.  
  37.     SEE ALSO
  38.  
  39.     INTERNALS
  40.  
  41.     HISTORY
  42.     06.12.1996 digulla created
  43.  
  44. ******************************************************************************/
  45. {
  46.     return vfprintf (stdout, format, args);
  47. } /* vprintf */
  48.  
  49.