mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-17 20:06:49 +00:00
19 lines
306 B
C++
19 lines
306 B
C++
/* 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");
|
|
}
|