home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / C-ASM_VI.ARJ / PROGC.ZIP / PROGC024.C < prev    next >
Text File  |  1988-06-29  |  561b  |  13 lines

  1.  
  2. /************************************************************************/
  3. /* Get current cursor size using library function                       */
  4. /************************************************************************/
  5.  
  6. print_cursor_size()
  7.         {
  8.         int     start, stop;                    /* Declare variables    */
  9.         get_cursor_size(&start, &stop);         /* Get shape            */
  10.         printf("\nCursor starts at %d and stops at %d",
  11.                 start, stop);                   /* Print the values     */
  12.         }
  13.