17 lines
402 B
C
17 lines
402 B
C
#ifndef CRASHPOWEROS_PRINTF_H
|
|
#define CRASHPOWEROS_PRINTF_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdarg.h>
|
|
|
|
int vsprintf(char *buf, const char *fmt, va_list args);
|
|
int sprintf(char *buf, const char *fmt, ...);
|
|
void printf(const char *formet, ...);
|
|
void print(char *message);
|
|
void printk(const char *formet, ...);
|
|
void putchar(char c);
|
|
void screen_clear();
|
|
|
|
#endif //CRASHPOWEROS_PRINTF_H
|