| 787 | /************************************************************************/ |
| 788 | |
| 789 | static const char *ReadLineLargeFile(void *fp, size_t nMaxLineSize) |
| 790 | { |
| 791 | int nBufLength = 0; |
| 792 | return CPLReadLine3L(static_cast<VSILFILE *>(fp), |
| 793 | nMaxLineSize == 0 ? -1 |
| 794 | : static_cast<int>(nMaxLineSize), |
| 795 | &nBufLength, nullptr); |
| 796 | } |
| 797 | |
| 798 | /************************************************************************/ |
| 799 | /* CSVReadParseLine3L() */ |
nothing calls this directly
no test coverage detected