home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / stdio / sprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-26  |  381 b   |  19 lines

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdio.h>
  3. #include <limits.h>
  4. #include <libc/file.h>
  5.  
  6. int
  7. sprintf(char *str, const char *fmt, ...)
  8. {
  9.   FILE _strbuf;
  10.   int len;
  11.  
  12.   _strbuf._flag = _IOWRT|_IOSTRG;
  13.   _strbuf._ptr = str;
  14.   _strbuf._cnt = INT_MAX;
  15.   len = _doprnt(fmt, &(fmt)+1, &_strbuf);
  16.   *_strbuf._ptr = 0;
  17.   return len;
  18. }
  19.