home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
alde_c
/
misc
/
lib
/
dlibssrc
/
cprintf.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1987-07-15
|
338 b
|
16 lines
#include <stdio.h>
extern int putch();
cprintf(fmt, arg)
char *fmt;
int arg;
/*
* Formatted output directly to the console. This functions uses the
* system dependent putch() for output. See the _printf() function
* for a description of the <fmt> formatting string.
*/
{
return(_printf(NULL, putch, fmt, &arg));
}