| 14 | namespace NULLCIO |
| 15 | { |
| 16 | void InitConsole() |
| 17 | { |
| 18 | #if defined(_MSC_VER) |
| 19 | AllocConsole(); |
| 20 | |
| 21 | freopen("CONOUT$", "w", stdout); |
| 22 | freopen("CONIN$", "r", stdin); |
| 23 | #endif |
| 24 | } |
| 25 | |
| 26 | void DeInitConsole() |
| 27 | { |
no outgoing calls
no test coverage detected