summaryrefslogtreecommitdiff
path: root/kernel/libc/include/stdio.h
blob: 111be1715288c08b9ee1f33951c3965887aab548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef STDIO_H
#define STDIO_H
#include <stdarg.h>
#include <stddef.h>
#include <lib/sb.h>

void putc(const char c);
void delete_characther(void);
int kprintf(const char *format, ...);
int vkprintf(const char *format, va_list list);
int ksnprintf(char *out, size_t size, const char *format, ...);
int kbnprintf(char *out, size_t size, const char *format, ...);
int ksbprintf(struct sb *ctx, const char *format, ...);

#endif