diff options
author | Danny Holman <dholman@gymli.xyz> | 2021-01-20 22:51:46 -0600 |
---|---|---|
committer | Danny Holman <dholman@gymli.xyz> | 2021-01-20 22:51:46 -0600 |
commit | dd6656f7132d1727a055035ca94945fa4fbaae58 (patch) | |
tree | 4a9a7bf01d6fb582f1aaf7ead9de2af693aa2610 /include/kernel | |
parent | fd4bd4dabe8011b016e3f8e6c3de5cfe6bc1f41d (diff) |
serial: add serial_writestring as a function
Add a function in the serial interface that writes an entire string to
the serial line.
Signed-off-by: Danny Holman <dholman@gymli.xyz>
Diffstat (limited to 'include/kernel')
-rw-r--r-- | include/kernel/serial.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/kernel/serial.h b/include/kernel/serial.h index 79d856b..a815766 100644 --- a/include/kernel/serial.h +++ b/include/kernel/serial.h @@ -4,5 +4,6 @@ int serial_init(void); char read_serial(void); void write_serial(char a); +void serial_writestring(const char *str); #endif |