blob: 26459271b33916e1c1ce97591121eed840a413c2 [file] [log] [blame]
/*
* console.h
*
* Copyright (C) 2019-2020 Sylvain Munaut <tnt@246tNt.com>
* SPDX-License-Identifier: LGPL-3.0-or-later
*/
#pragma once
void console_init(void);
char getchar(void);
int getchar_nowait(void);
void putchar(char c);
void puts(const char *p);
int printf(const char *fmt, ...);