home *** CD-ROM | disk | FTP | other *** search
/ The Best of Mecomp Multimedia 2 / MECOMP-CD-II.iso / amiga / programmieren / c / vbcc / machines / amiga68k / libsrc / stdio / old / vsprintf.c < prev   
Encoding:
C/C++ Source or Header  |  1997-12-30  |  218 b   |  14 lines

  1. #include <stdio.h>
  2.  
  3. int _printf(void *,int (),const char *,va_list);
  4.  
  5. int _sputc(int,FILE *);
  6.  
  7. int vsprintf(char *s,const char *fmt,va_list vl)
  8. {
  9.     int n;
  10.     n=_printf(s,_sputc,fmt,vl);
  11.     s[n]=0;
  12.     return(n);
  13. }
  14.