home *** CD-ROM | disk | FTP | other *** search
- main() /* aput.c -- illustrates use of aput() */
- /* make sure your equipment is hooked up and port initialized */
- {
- int ret,;
- char c;
-
- c = 32;
-
- puts("Turn on your modem then press any key to continue; Ctrl-c + <enter> to abort.");
- getchar();
- ret = aput(c);
- printf("%d", ret);
- ret = aget();
- printf(" %d", ret);
-
- /* Send a space to the communication port; correct answer is 32*/
- }