summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/kernel/serial.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/kernel/serial.h b/include/kernel/serial.h
index a815766..23f6907 100644
--- a/include/kernel/serial.h
+++ b/include/kernel/serial.h
@@ -1,9 +1,15 @@
#ifndef SERIAL_H
#define SERIAL_H
+#include <kernel/string.h>
+
int serial_init(void);
char read_serial(void);
void write_serial(char a);
-void serial_writestring(const char *str);
+
+inline void serial_writestring(const char *str) {
+ for (size_t i = 0; i < strlen(str); i++)
+ write_serial(str[i]);
+}
#endif