10 lines
168 B
C
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
|