| 1194 | } |
| 1195 | |
| 1196 | bool TruncateFile(FILE *file, unsigned int length) { |
| 1197 | #if defined(WIN32) |
| 1198 | return _chsize(_fileno(file), length) == 0; |
| 1199 | #else |
| 1200 | return ftruncate(fileno(file), length) == 0; |
| 1201 | #endif |
| 1202 | } |
| 1203 | |
| 1204 | /** |
| 1205 | * this function tries to raise the file descriptor limit to the requested number. |
no outgoing calls
no test coverage detected