wiiu-nanddumper-payload/ios_fs/source/text.h

12 lines
217 B
C
Raw Normal View History

2016-12-12 19:31:02 +01:00
#ifndef TEXT_H
#define TEXT_H
#include "types.h"
void clearScreen(u32 color);
void clearLine(int y, u32 color);
void drawString(char* str, int x, int y);
void _printf(int x, int y, const char *format, ...);
#endif