| 37 | #include "unichar.h" |
| 38 | |
| 39 | void |
| 40 | cprintf ( //Trace printf |
| 41 | const char *format, ... //special message |
| 42 | ) { |
| 43 | va_list args; //variable args |
| 44 | char msg[1000]; |
| 45 | |
| 46 | va_start(args, format); //variable list |
| 47 | vsprintf(msg, format, args); //Format into msg |
| 48 | va_end(args); |
| 49 | |
| 50 | tprintf ("%s", msg); |
| 51 | } |
| 52 | |
| 53 | |
| 54 | #ifndef GRAPHICS_DISABLED |
no outgoing calls
no test coverage detected