home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 273_01 / curnl.cc < prev    next >
Text File  |  1987-09-25  |  226b  |  10 lines

  1. cur_nl() 
  2. /* Move the cursor to the beginning of the next row  */
  3. {
  4.         int cur_row, cur_col;
  5.         get_cur(&cur_row,&cur_col);
  6.         cur_row++;
  7.         if(cur_row>24) cur_row=0;
  8.         locate(cur_row,0);
  9. }
  10.