Parent Directory
|
Revision Log
|
Patch
| Revision 1.15 by sysadm, Fri Apr 8 11:11:11 2005 UTC | Revision 1.17 by sysadm, Fri May 6 16:37:59 2005 UTC | |
|---|---|---|
| # | Line 62 clrline (int line_begin, int line_end) | Line 62 clrline (int line_begin, int line_end) |
| 62 | } | } |
| 63 | ||
| 64 | void | void |
| 65 | clrtobot (int line_begin) | |
| 66 | { | |
| 67 | clrline (line_begin, screen_lines); | |
| 68 | moveto (line_begin, 0); | |
| 69 | } | |
| 70 | ||
| 71 | void | |
| 72 | clearscr () | clearscr () |
| 73 | { | { |
| 74 | prints ("\33[2J"); | prints ("\33[2J"); |
| # | Line 141 str_input (char *buffer, int buffer_leng | Line 148 str_input (char *buffer, int buffer_leng |
| 148 | buffer[offset] = '\0'; | buffer[offset] = '\0'; |
| 149 | switch (echo_mode) | switch (echo_mode) |
| 150 | { | { |
| 151 | case 0: | case DOECHO: |
| 152 | outc ((char) c); | outc ((char) c); |
| 153 | break; | break; |
| 154 | case 1: | case NOECHO: |
| 155 | outc ('*'); | outc ('*'); |
| 156 | break; | break; |
| 157 | } | } |
|
||||||||
| webmaster@leafok.com | ViewVC Help |
| Powered by ViewVC 1.3.0-beta1 |