aboutsummaryrefslogtreecommitdiff
path: root/include/06.keyboard/keyboard07.c
diff options
context:
space:
mode:
Diffstat (limited to 'include/06.keyboard/keyboard07.c')
-rw-r--r--include/06.keyboard/keyboard07.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/06.keyboard/keyboard07.c b/include/06.keyboard/keyboard07.c
deleted file mode 100644
index 480abb1..0000000
--- a/include/06.keyboard/keyboard07.c
+++ /dev/null
@@ -1,8 +0,0 @@
-void backspace()
-{
- if(buffer_index<=0) return;
-
- deletelast();
- buffer[buffer_current][--buffer_index]='\0';
- return;
-}