home *** CD-ROM | disk | FTP | other *** search
/ nisttime.carsoncity.k12.mi.us / nisttime.carsoncity.k12.mi.us.tar / nisttime.carsoncity.k12.mi.us / pub / acts / sndptr.c < prev    next >
C/C++ Source or Header  |  1996-11-07  |  316b  |  19 lines

  1. void sndptr()
  2. {
  3. #include "nistime.h"
  4. #ifdef IBMPC
  5. #include <dos.h>
  6. /*
  7.         pulses strobe line on printer
  8.  
  9.     note -- only used for IBMPC version. if IBMPC is not
  10.     defined, this is a do - nothing
  11. */
  12. extern int lpadr;
  13. int j;
  14.         outportb(lpadr,1);
  15.         for(j=0; j<3; j++) ;
  16.         outportb(lpadr,0);
  17. #endif
  18. }
  19.