mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-02 19:29:21 +00:00
1 line
306 B
C++
Executable File
1 line
306 B
C++
Executable File
/* Conformance Test 23.3.0.1: Verification of shellid function */
|
|
|
|
#include <orca.h>
|
|
|
|
main ()
|
|
{
|
|
char *id;
|
|
|
|
id = shellid ();
|
|
if (strcmp (id, "BYTEWRKS"))
|
|
goto Fail;
|
|
|
|
printf ("Passed Conformance Test 23.3.0.1\n");
|
|
return;
|
|
|
|
Fail:
|
|
printf ("Failed Conformance Test 23.3.0.1\n");
|
|
}
|