home *** CD-ROM | disk | FTP | other *** search
-
- /************************************************************************/
- /* Get current cursor size using library function */
- /************************************************************************/
-
- print_cursor_size()
- {
- int start, stop; /* Declare variables */
- get_cursor_size(&start, &stop); /* Get shape */
- printf("\nCursor starts at %d and stops at %d",
- start, stop); /* Print the values */
- }