aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdio.h
blob: e1d7b9a6e19344ce2d275a8049a1c8fb830652fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MELVIX_STDIO_H
#define MELVIX_STDIO_H

#include <stdarg.h>

char getch();

char *readline();

void writec(char c);

void vprintf(const char *fmt, va_list args);

void printf(const char *fmt, ...);

void serial_printf(const char *fmt, ...);

#endif