mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 00:07:21 +00:00
20 lines
338 B
C
20 lines
338 B
C
/* bug #1891 - backslash/newline sequence in string constants is treated wrong */
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
const char* a = "hello \
|
|
world";
|
|
const char* b = \
|
|
"hello world";
|
|
|
|
int main(void)
|
|
{
|
|
if (strcmp(a, b) != 0) {
|
|
printf("a:\n%s\n", a);
|
|
printf("b:\n%s\n", b);
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|