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

#include <stdarg.h>

// File operations

// Character input/output
char getch();
void putch(char ch);
void puts(char *data);

void printf(char *fmt, ...);
void vprintf(char *fmt, va_list args);

#endif