hwtests/source/output.h
2014-10-29 18:52:09 -07:00

10 lines
168 B
C

#ifndef OUTPUT_H
#define OUTPUT_H
#define print(...) sprintf(&superStr[strlen(superStr)], __VA_ARGS__); drawFrame()
void drawFrame();
extern char superStr[];
#endif