mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-17 20:06:49 +00:00
24 lines
464 B
C++
24 lines
464 B
C++
/* Conformance Test 2.1.1.2: Verification of newline character */
|
|
main ()
|
|
{
|
|
char string [10];
|
|
|
|
strcpy (string, "\n");
|
|
if (string [0] != 0x0A)
|
|
goto Fail;
|
|
|
|
strcpy (string, "abc\nf\ngh\n");
|
|
if (string [3] != 0x0A)
|
|
goto Fail;
|
|
if (string [5] != 0x0A)
|
|
goto Fail;
|
|
if (string [8] != 0x0A)
|
|
goto Fail;
|
|
|
|
printf ("Passed Conformance Test 2.1.1.2\n");
|
|
return;
|
|
|
|
Fail:
|
|
printf ("Failed Conformance Test 2.1.1.2\n");
|
|
}
|