hippOS/std/kstd.h
2022-02-24 18:11:09 +02:00

11 lines
No EOL
175 B
C

#ifndef _KSTD_H
#define _KSTD_H
#include <stdbool.h>
int putchar(int ic);
int kprintf(const char* restrict format, ...);
void kputs(const char* data);
void kabort();
#endif