10 lines
144 B
C
10 lines
144 B
C
|
#include <stdio.h>
|
||
|
#include <jstring.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
printf( "%s\n",
|
||
|
jstrstr( "This is an example", "is" )
|
||
|
);
|
||
|
}
|