jankos/stlio.h
2019-11-29 01:45:30 -08:00

15 lines
273 B
C

#include "types.h"
#include "framebuffer.h"
// Frame buffer driver
// NOTE: not getting computed at compile time so we always have a call
u32 strlen(const char*);
u32 write(const char*, const u32);
void printf(const char*);
void printhex(u32);
void putch(const char);