Design
texted.asc
Associated article: Text Editors: Algorithms and Architectures
Tags: Database Tools Design
_TEXT EDITORS: ALGORITHMS AND ARCHITECTURES_
by Ray Valdes
[LISTING ONE]
/* EditLine() -- The simplest text editing routine */
void EditLine(char* buffer, int max_length, int curr_row)
{
int c, str_length = strlen(buffer), curr_column = str_length,
insert_mode = TRUE;
...


