aboutsummaryrefslogtreecommitdiff
path: root/include/stdio.h
blob: c1549334010593f6ae860f774cf5229db85fb191 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef BIOS_STDIO_H
#define BIOS_STDIO_H 1

#include <stdarg.h>

extern int puts(const char *s);
extern int printf(const char *fmt, ...);
extern int snprintf(char *buf, int size, const char *fmt, ...);
extern int vsnprintf(char *buf, int size, const char *fmt, va_list va);

#endif