20 char cursor_normal[2] = { 219,
'\0' };
21 char cursor_backspace[3] = { 219,
' ',
'\0' };
22 char space[2] = {
' ',
'\0' };
23 char character[2] = { 0,
'\0' };
24 char *cursor = cursor_normal;
32 if (cursor == cursor_backspace) {
34 cursor = cursor_normal;
42 cursor = cursor_backspace;
46 cursor = cursor_normal;
51 else if ((key != 7) && (len < maxlen - 1)) {