home *** CD-ROM | disk | FTP | other *** search
/ Photo CD Demo 1 / Demo.bin / gle / gle / wprntf_d.c < prev    next >
C/C++ Source or Header  |  1992-11-29  |  206b  |  14 lines

  1. #include <ctype.h>
  2. #include <string.h>
  3. #include <assert.h>
  4.  
  5.  
  6. #define false 0
  7. #define true (!false)
  8. extern int noscreenio;
  9. void wprintf_do(char *s)
  10. {
  11.     if (noscreenio) printf("%s",s);
  12.     else printw("%s",s);
  13. }
  14.