const char *s1 = "\x41g"; /* Non-compliant */ const char *s2 = "\x41" "g"; /* Compliant - terminated by end of literal */ const char *s3 = "\x41\x67"; /* Compliant - terminated by another escape */ int c1 = '\141t'; /* Non-compliant */ int c2 = '\141\t'; /* Compliant - terminated by another escape */