File:  [Research Unix] / researchv10dc / cmd / cfront / ptcfront / ios_printf.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Apr 24 17:21:33 2018 UTC (6 years, 11 months ago) by root
Branches: belllabs, MAIN
CVS tags: researchv10, HEAD
researchv10 Dan Cross

/* ident "@(#)ctrans:src/ios_printf.h	1.2" */
/* Begin iostream_printf.H -- printf functions that work on ostreams.
   someday, perhaps, scanf functions for istreams. */

#include <stdarg.h>
#include <iostream.h>

int vostream_printf(const char *format, va_list argp, ostream& fp);
int ostream_printf(ostream& stream, const char * format ...);

// returns count of characters added.
int printf_to_string (char * string, int length, const char * format ...);

// returns string which came from malloc.
char * printf_to_alloc_string (const char * format ...);

unix.superglobalmegacorp.com