------------------------------------------------------------------------------
| 1156 | |
| 1157 | //------------------------------------------------------------------------------ |
| 1158 | void vtkEnSightWriter::WriteTerminatedStringToFile(const char* cstring, FILE* file) |
| 1159 | { |
| 1160 | fwrite(cstring, sizeof(char), std::min(strlen(cstring), static_cast<size_t>(512)), file); |
| 1161 | } |
| 1162 | |
| 1163 | //------------------------------------------------------------------------------ |
| 1164 | void vtkEnSightWriter::WriteIntToFile(int i, FILE* file) |
no test coverage detected