blob: 9dd496ef2e4b17ee769449ff14e3594d725cdf70 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef STDIO_H
#define STDIO_H
#include <stdarg.h>
void putc(const char c);
void delete_characther(void);
int kprintf(const char *format, ...);
int vkprintf(const char *format, va_list list);
#endif
|