home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
libs
/
gle
/
util
/
surf
/
wprntf_d.c
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-11-29
|
206 b
|
14 lines
#include <ctype.h>
#include <string.h>
#include <assert.h>
#define false 0
#define true (!false)
extern int noscreenio;
void wprintf_do(char *s)
{
if (noscreenio) printf("%s",s);
else printw("%s",s);
}