Apart from LF the only allowed white space character is Space (ASCII value 32). Note that this implies that other white space characters (in, for instance, string and character literals) must be written in escaped form.
\', \", \\, \t, \b, \r, \f, and \n should be preferred over corres...