home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT14.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-14  |  478 b   |  21 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat14.c                                              */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <dos.h>
  6.  
  7. /* ░╗░╝Ñ╪½e⌐╥ªbñº║╧║╨, ¿├ÑH 'A','B','C'...╡Ñ║╧║╨ªrÑ└ÑN╕╣╢╟ª^ */
  8. char cur_drv()
  9. {
  10.  int curdrv;
  11.  curdrv = bdos(0x19,0,0);
  12.  return('A'+curdrv);
  13. }
  14.  
  15. void main()
  16. {
  17.  printf("Ñ╪½e⌐╥ªbñº║╧║╨¼░ %c:\n",cur_drv());
  18. }
  19.  
  20.  
  21.