diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-27 06:02:49 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-27 06:02:49 -0400 |
commit | d43d7caf15a01dd9c2ef1d9e975df3ef7c4e9204 (patch) | |
tree | aaf1f0f3a18b6f7b3fc25022e06941a9fb4fa612 /textoutput.hpp |
wip: initial commit
Diffstat (limited to 'textoutput.hpp')
-rw-r--r-- | textoutput.hpp | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/textoutput.hpp b/textoutput.hpp new file mode 100644 index 0000000..7ef12fa --- /dev/null +++ b/textoutput.hpp @@ -0,0 +1,44 @@ +#ifndef TEXTOUTPUT_HPP +#define TEXTOUTPUT_HPP + +class TextOutput +{ +public: + virtual void write(char c) noexcept = 0; + + void write(const char *s) noexcept { + if (s) { + while (*s) + write(*s++); + } + } + + void write(int n) noexcept { + char buf[32]; + auto ptr = buf + sizeof(buf); + + *--ptr = '\0'; + do { + *--ptr = "0123456789"[n % 10]; + n /= 10; + } while (n); + + write(ptr); + } + + void write(unsigned n) noexcept { + char buf[32]; + auto ptr = buf + sizeof(buf); + + *--ptr = '\0'; + do { + *--ptr = "0123456789"[n % 10]; + n /= 10; + } while (n); + + write(ptr); + } +}; + +#endif // TEXTOUTPUT_HPP + |