Llewyllen

Results 2 issues of Llewyllen

Do not remove consecutive double quotes, as it might result in a different string in case of an escaped octal or hexadecimal value at the end of the first string...

The following valid c99 code ``` char test() { char* tmp = "\07""7"; return tmp[0]; } ``` is wrongly parsed and returns a c_ast.Constant object with value `'\077'` which is...