aboutsummaryrefslogtreecommitdiff
path: root/src/lib/include/stdio.h
blob: b51bee4e388a0b301f680634abea0a13cc6a7817 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <stddef.h>
#include <stdarg.h>
#include <stdint.h>

extern fd_t stdio;

void putchar(int c);
void puts(char* s);
void printf(char* arg, ...);

int getchar();
void getline(char* buf, size_t l);

/* vim: set ts=4 sw=4 tw=0 noet :*/