summaryrefslogtreecommitdiff
path: root/src/kernel/tty.h
blob: 3dc1525cbd804b7bb54457566bef279361e183a7 (plain)
1
2
3
4
5
6
7
8
#pragma once
#include <stddef.h>

void tty_putchar(char c);
void tty_write(const char *buf, size_t len);
void tty_clear();

#define tty_const(str) tty_write(str, sizeof(str) - 1)