9 lines
175 B
C
9 lines
175 B
C
#include <stdio.h>
|
|
#include <jstring.h>
|
|
|
|
void main()
|
|
{
|
|
printf( "%d\n", jstrspn( "out to lunch", "aeiou" ) );
|
|
printf( "%d\n", jstrspn( "out to lunch", "xyz" ) );
|
|
}
|