msvcrt/tests: Use the C standard for multiline strings.

This commit is contained in:
Michael Stefaniuc 2008-12-23 11:08:07 +01:00 committed by Alexandre Julliard
parent ac85a76b2d
commit a4c2a0ee20
1 changed files with 9 additions and 9 deletions

View File

@ -320,15 +320,15 @@ static void test_asciimode2(void)
char ibuf[4];
int i;
static const char obuf[] =
"00\n\
000000000000000000000000000000000000000000000000000000000000000000000000000000\n\
000000000000000000000000000000000000000000000000000000000000000000000000000000\n\
000000000000000000000000000000000000000000000000000000000000000000000000000000\n\
000000000000000000000000000000000000000000000000000000000000000000000000000000\n\
000000000000000000000000000000000000000000000000000000000000000000000000000000\n\
000000000000000000000000000000000000000000000000000000000000000000000000000000\n\
000000000000000000\n\
1111111111111111111";
"00\n"
"000000000000000000000000000000000000000000000000000000000000000000000000000000\n"
"000000000000000000000000000000000000000000000000000000000000000000000000000000\n"
"000000000000000000000000000000000000000000000000000000000000000000000000000000\n"
"000000000000000000000000000000000000000000000000000000000000000000000000000000\n"
"000000000000000000000000000000000000000000000000000000000000000000000000000000\n"
"000000000000000000000000000000000000000000000000000000000000000000000000000000\n"
"000000000000000000\n"
"1111111111111111111";
fp = fopen("ascii2.tst", "wt");
fwrite(obuf, 1, sizeof(obuf), fp);