home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / gle / util / surf / wprntf_d.c < prev   
Encoding:
C/C++ Source or Header  |  1992-11-29  |  206 b   |  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.