#include <stdlib.h>
#include <string.h>

int main(void)
{
	char buf[] = "Hello";
	void *x;
	x = buf;
	strstr(x,"el");
	return 0;
}

