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 >
Wrap
Text File
|
1987-09-25
|
226b
|
10 lines
cur_nl()
/* Move the cursor to the beginning of the next row */
{
int cur_row, cur_col;
get_cur(&cur_row,&cur_col);
cur_row++;
if(cur_row>24) cur_row=0;
locate(cur_row,0);
}