blob: d4bd6b694a5fd275a16ca38fde1ee98a39a60055 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef STDIO_H
#define STDIO_H
#include "drivers/framebuffer.h"
/**
* Print a char* in the framebuffer
*/
void print(char*);
/**
* Print a char in the framebuffer
*/
void printc(char*,VIDEO_COLORS c);
/**
* Print an integer using itoa()
*/
void printi(int i);
#endif
|