else if ((ptr=(char *)strstr(line, "__IMG_SEARCH_LINK__")) != NULL ) { *ptr = '\0'; printf("%s", line); WebSearch(query, "image"); printf("%s", ptr+19); } else if ( (ptr = (char *)strstr(line, "__WEB_SEARCH_LINK__")) != NULL ) { *ptr = '\0'; printf("%s", line); WebSearch(query, "web"); printf("%s", ptr+19); } else if ( (ptr = (char *)strstr(line, "__AUDIO_SEARCH_LINK__")) != NULL ) { *ptr = '\0'; printf("%s", line); WebSearch(query, "audio"); printf("%s", ptr+21); } else if ( (ptr = (char *)strstr(line, "__VIDEO_SEARCH_LINK__")) != NULL ) { *ptr = '\0'; printf("%s", line); WebSearch(query, "video"); printf("%s", ptr+21); }