summaryrefslogtreecommitdiffstats
path: root/common/print.c
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2014-06-15 06:56:17 +0200
committertmk <nobody@nowhere>2014-07-30 07:07:43 +0200
commitf15b2691c92e1d9b3c0e59363c803ec540303f37 (patch)
treee875f43e4726de490c90ec408b3a41f781762904 /common/print.c
parent79840c678e13f9a737f80048bc3b9c9c55e3fc77 (diff)
downloadqmk_firmware-f15b2691c92e1d9b3c0e59363c803ec540303f37.tar.gz
qmk_firmware-f15b2691c92e1d9b3c0e59363c803ec540303f37.tar.xz
Add keyboard/mbed_onekey
Diffstat (limited to 'common/print.c')
-rw-r--r--common/print.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/common/print.c b/common/print.c
index 783bb4e9b..c13a29f31 100644
--- a/common/print.c
+++ b/common/print.c
@@ -37,26 +37,4 @@ void print_set_sendchar(int8_t (*sendchar_func)(uint8_t))
xdev_out(sendchar_func);
}
-void print_S(const char *s)
-{
- uint8_t c;
- while (1) {
- c = *s++;
- if (!c) break;
- if (c == '\n') sendchar('\r');
- sendchar(c);
- }
-}
-
-void print_lf(void)
-{
- sendchar('\n');
-}
-
-void print_crlf(void)
-{
- sendchar('\r');
- sendchar('\n');
-}
-
#endif