| 266 | _setmode(_fileno(file), _O_BINARY); |
| 267 | } |
| 268 | static void setTextMode(FILE *file, int isOutput){ |
| 269 | if( isOutput ) fflush(file); |
| 270 | _setmode(_fileno(file), _O_TEXT); |
| 271 | } |
| 272 | #else |
| 273 | # define setBinaryMode(X,Y) |
| 274 | # define setTextMode(X,Y) |
no outgoing calls
no test coverage detected