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

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

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 :*/