summaryrefslogtreecommitdiff
path: root/include/kernel/tty.h
blob: 194b7c70756546563dd3bb47f1af44ef386b99af (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef KERNEL_TTY
#define KERNEL_TTY

#include <stddef.h>

void tty_init(void);
void tty_putchar(char c);
void tty_write(const char *data, size_t size);
void tty_writestring(const char *data);

#endif