/* priklad pr7_1.c vyhľadanie podreťazca */
#include <stdio.h>
#include <string.h>

void main(void)
{
  char *s1 = "Text v ktorom hladame vzor";
  char *s2 = "vzor", *pom;

  pom = strstr(s1, s2);
  if (pom != NULL)
    printf("Podretazec %s najdeny v %s na pozicii %d\n", pom,s1,pom - s1);
  else
    printf("Podretazec %s sa v %s nenachdza\n",pom,s1);
}