home *** CD-ROM | disk | FTP | other *** search
- main() /* aget.c -- tests aget() asynch function */
- {
- int ret;
- puts("Turn on your modem, the press any key; ctrl-c + <enter> to abort");
- getchar();
- ret = aget();
- printf("%d", ret);
- /* Captures a character from the communication port */
- /* Result: a random decimal value vill be printed if your modem is*/
- /* connected properly and properly initialized with mode or setcom */
- }