home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / LIBC / LIBC-4.6 / LIBC-4 / libc-linux / libbsd / snprintf.c < prev   
Encoding:
C/C++ Source or Header  |  1993-03-07  |  285 b   |  16 lines

  1. /* snprintf.c - emulate BSD snprintf with sprintf - rick sladkey */
  2.  
  3. #include <stdio.h>
  4. #include <stdarg.h>
  5.  
  6. int snprintf(char *s, int len, char *format, ...)
  7. {
  8.     va_list args;
  9.     int result;
  10.  
  11.     va_start(args, format);
  12.     result = vsprintf(s, format, args);
  13.     va_end(args);
  14.     return result;
  15. }
  16.