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

  1. main()    /* aget.c -- tests aget() asynch function */
  2. {
  3. int ret;
  4. puts("Turn on your modem, the press any key; ctrl-c + <enter> to abort");
  5. getchar();
  6. ret = aget();
  7. printf("%d", ret);
  8. /* Captures a character from the communication port */
  9. /*    Result: a random decimal value vill be printed if your modem is*/
  10. /*    connected properly and properly initialized with mode or setcom */
  11. }
  12.