diff options
Diffstat (limited to 'src/core/Print.cpp')
| -rw-r--r-- | src/core/Print.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/Print.cpp b/src/core/Print.cpp index ab58b9f..d2c3848 100644 --- a/src/core/Print.cpp +++ b/src/core/Print.cpp @@ -107,3 +107,18 @@ void Print::println(void) return; } +void Print::print(const char c) +{ + write(c); + return; +} + +void Print::println(const char c) +{ + write(c); + println(); + return; +} + + + |
