home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c065 / 1.ddi / CLIB1.ZIP / VPRINTF.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-07  |  1.4 KB  |  38 lines

  1. /*-----------------------------------------------------------------------*
  2.  * filename - vprintf.c
  3.  *
  4.  * function(s)
  5.  *      vprintf - send formatted output to stdout
  6.  *-----------------------------------------------------------------------*/
  7.  
  8. /*[]------------------------------------------------------------[]*/
  9. /*|                                                              |*/
  10. /*|     Turbo C Run Time Library - Version 3.0                   |*/
  11. /*|                                                              |*/
  12. /*|                                                              |*/
  13. /*|     Copyright (c) 1987,1988,1990 by Borland International    |*/
  14. /*|     All Rights Reserved.                                     |*/
  15. /*|                                                              |*/
  16. /*[]------------------------------------------------------------[]*/
  17.  
  18. #include <stdio.h>
  19. #include <_printf.h>
  20. #include <_stdio.h>
  21.  
  22. /*---------------------------------------------------------------------*
  23.  
  24. Name        vprintf - send formatted output to stdout
  25.  
  26. Usage        int vprintf(const char *format, va_list param);
  27.  
  28. Prototype in    stdio.h
  29.  
  30. Description    see printf
  31.  
  32. *---------------------------------------------------------------------*/
  33. int _CType vprintf (const char *fmt, va_list ap)
  34. {
  35.         return( __vprinter ((putnF *)__fputn, stdout, fmt, (void _ss *) ap) );
  36. }
  37.  
  38.