diff options
| author | 2014-11-24 15:36:53 +0900 | |
|---|---|---|
| committer | 2014-11-24 15:36:53 +0900 | |
| commit | ed52ebb9870a26496b13a0565c1aaca8ded3465b (patch) | |
| tree | cddad806a3408e05bc29310254c564ee94e3e710 /common/print.c | |
| parent | eb90ed6238426db9367e294abfaefb5de07564f5 (diff) | |
| parent | e2077cad45f1736e878e317c43bd94117c61b5e0 (diff) | |
| download | qmk_firmware-ed52ebb9870a26496b13a0565c1aaca8ded3465b.tar.gz | |
Merge branch 'merge_rn42'
Diffstat (limited to 'common/print.c')
| -rw-r--r-- | common/print.c | 22 |
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 |