home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / bc-102.zip / bc-1.02 / vfprintf.c < prev    next >
C/C++ Source or Header  |  1991-11-01  |  233b  |  14 lines

  1. #include <lib.h>
  2. #include <stdarg.h>
  3. #include <stdio.h>
  4.  
  5. int vfprintf(file, format, argp)
  6. FILE *file;
  7. _CONST char *format;
  8. va_list argp;
  9. {
  10.   _doprintf(file, format, argp);
  11.   if (testflag(file, PERPRINTF)) fflush(file);
  12.   return 0;
  13. }
  14.