mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-02 19:29:21 +00:00
1 line
355 B
C++
Executable File
1 line
355 B
C++
Executable File
/* Conformance Test 23.5.0.1: Verification of startgraph, endgraph functions */
|
|
|
|
#include <orca.h>
|
|
|
|
main ()
|
|
{
|
|
startgraph (640);
|
|
if ( toolerror () )
|
|
goto Fail;
|
|
endgraph ();
|
|
if ( toolerror () )
|
|
goto Fail;
|
|
|
|
printf ("Passed Conformance Test 23.5.0.1\n");
|
|
return;
|
|
|
|
Fail:
|
|
printf ("Failed Conformance Test 23.5.0.1\n");
|
|
}
|