Controls the use of newline character convention.
#pragma mpwc_newline on | off | reset
If you enable this pragma, the compiler translates '\n' as a Carriage Return (0x0D) and '\r' as a Line Feed (0x0A). Otherwise, the compiler uses the ISO standard conventions for these characters.
If you enable this pragma, use ISO standard libraries that were compiled when this pragma was enabled.
If you enable this pragma and use the standard ISO standard libraries, your program will not read and write '\n' and '\r' properly. For example, printing '\n' brings your program's output to the beginning of the current line instead of inserting a newline.
This pragma does not correspond to any IDE panel setting. By default, this pragma is disabled.