home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SPACE 2
/
SPACE - Library 2 - Volume 1.iso
/
program
/
316
/
libsrc
/
fprintf.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1988-10-20
|
274 b
|
20 lines
#include <stdio.h>
static void __fprintf_putc(c, f)
char c;
FILE * f;
{
fputc(c, f);
}
void fprintf(f, template, args)
FILE * f;
char * template;
long args;
{
_printf_guts(template, &args, __fprintf_putc, f);
if (isatty(fileno(f)))
fflush(f);
}