home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT91.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-01  |  459 b   |  17 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat91.c                                              */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <io.h>
  6.  
  7. void main()
  8. {
  9.    int handle;
  10.  
  11.    handle = fileno(stdprn);
  12.    if (isatty(handle))
  13.       printf("▒▒¿ε╜X %d ¼Oñ@ªrñ╕│]│╞\n", handle);
  14.    else
  15.       printf("▒▒¿ε╜X %d ñú¼Oñ@ªrñ╕│]│╞\n", handle);
  16. }
  17.