aboutsummaryrefslogtreecommitdiff
path: root/include/06.keyboard/keyboard07.c
blob: 480abb16e1738e4669fd18351f0f64af4da31ab8 (plain)
1
2
3
4
5
6
7
8
void backspace()
{
    if(buffer_index<=0) return;

    deletelast();
    buffer[buffer_current][--buffer_index]='\0';
    return;
}