mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-16 13:09:16 +00:00
26 lines
524 B
C++
26 lines
524 B
C++
/* Conformance Test 15.7.0.1: Verification of strstr function */
|
|
|
|
#include <stddef.h>
|
|
#include <string.h>
|
|
|
|
main ()
|
|
{
|
|
char string [] = " this is the source string, a source string";
|
|
char *strPtr;
|
|
|
|
|
|
strPtr = strstr (string, "source string");
|
|
if (strPtr != (&( (string) [(13)] )) )
|
|
goto Fail;
|
|
|
|
strPtr = strstr (string, "source string!");
|
|
if (strPtr != NULL)
|
|
goto Fail;
|
|
|
|
printf ("Passed Conformance Test 15.7.0.1\n");
|
|
return;
|
|
|
|
Fail:
|
|
printf ("Failed Conformance Test 15.7.0.1\n");
|
|
}
|