1 2 3 4 5 6 7 8
void backspace() { if(buffer_index<=0) return; deletelast(); buffer[buffer_current][--buffer_index]='\0'; return; }