hwtests/source/output.h

10 lines
168 B
C
Raw Normal View History

2014-10-26 18:47:14 -07:00
#ifndef OUTPUT_H
#define OUTPUT_H
#define print(...) sprintf(&superStr[strlen(superStr)], __VA_ARGS__); drawFrame()
void drawFrame();
extern char superStr[];
#endif