| 227 | _setmode(_fileno(file), _O_BINARY); |
| 228 | } |
| 229 | static void setTextMode(FILE *file, int isOutput){ |
| 230 | if( isOutput ) fflush(file); |
| 231 | _setmode(_fileno(file), _O_TEXT); |
| 232 | } |
| 233 | #else |
| 234 | # define setBinaryMode(X,Y) |
| 235 | # define setTextMode(X,Y) |
no outgoing calls
no test coverage detected