char[] readLine();
char[] readLine(char[] result);
wchar[] readLineW();
wchar[] readLineW(wchar[] result);
|
Reads a line from the stream. The line can be terminated by either CR, LF, CR/LF, or EOF.
The readLineW versions of the function reads Unicode wchars.
If you already have a char array, you can use the second version of the readLine or readLineW functions, as these will try to reuse your char array and reallocate memory if neccessary.
|