| 33 | int abs(int x){ return x < 0 ? -x : x; } |
| 34 | |
| 35 | void WriteToConsole(NULLCArray data) |
| 36 | { |
| 37 | InitConsole(); |
| 38 | printf("%s", data.ptr); |
| 39 | } |
| 40 | |
| 41 | void WriteLongConsole(long long number, int base) |
| 42 | { |
nothing calls this directly
no test coverage detected