aboutsummaryrefslogtreecommitdiff
path: root/include/06.keyboard/keyboard17.c
blob: e82af4567d4f38deca77d26faa98c06f8cb564c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
                default:
                    if(c!=' ')
                    {
                        if(ispressed[lctrl]||ispressed[rctrl])
                        {
                            if(c=='l')
                            {
                                clear();
                                prompt();
                                printf("%s",buffer[buffer_current]);
                                return;
                            }
                        }
                        if(ispressed[lshift]||ispressed[rshift])
                        {
                            c=shift_charcode[keycode];
                        }