Different platforms use different line separator schemes (LF, CR-LF, CR, NEL, Unicode LINE SEPARATOR, etc.). C++ (and C) runtime libraries make a lot of this transparent to most programs, by converting '
'
to and from the target platform's native new line encoding. But if your program needs to determine the actual byte sequence used, how could you do it portably?
The best method I've come up with is:
- Write a temporary file in text mode with just
' '
in it, letting the run-time do the translation. - Read back the temporary file in binary mode to see the actual bytes.
That feels kludgy. Is there a way to do it without temporary files? I tried stringstreams instead, but the run-time doesn't actually translate '
'
in that context (which makes sense). Does the run-time expose this information in some other way?