home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / SETCOM.C < prev    next >
Encoding:
Text File  |  1985-02-17  |  337 b   |  16 lines

  1. main()    /* setcom.c -- initializes a port with setcom() */
  2. {
  3. puts("Turn on your modem, then press any key -- Ctrl-c, then <enter> to abort.");
  4. getchar();
  5.     setcom(0,91);
  6.     aput('H');
  7.  
  8. /*
  9.  
  10. Initializes communications port #0 to 300 baud,
  11. even parity, 1 stop bit, 8 data bits, and
  12. sends the character 'H' out to port #0.
  13.  
  14. */
  15. }
  16.