1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef PRINT_H
- #define PRINT_H
- void slowPrint(char arr[], int size, int line);
- void slowType(char arr[], int size, int line);
- void passPrint(char arr[], int size, int line);
- int kbhit();
- void printChoices(int hex, char arr[], int line, int offset);
- #endif
|