summaryrefslogtreecommitdiff
path: root/src/libc/stdio.h
blob: dbf7ac71ce25f4d42af3890448b9f0f7697cc76d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef STDIO_H
#define STDIO_H

#include <stdarg.h>

#include "stddef.h"

#include "console.h"

#define EOF (-1)

int puts( const char *s );
int printf( const char *format, ... );
int vprintf( const char *format, va_list args );

void __stdio_set_console( console_t *console );

#endif //STDIO_H