59

I'm pretty new to the language. Let's say I have a string from an HTTP request, such as

char * request = "GET /favicon.ico HTTP/1.1";

And I specifically want to know if favicon is in that request, perhaps with a boolean value. What is a relatively simple way to go about this? I know how to do it in Java, but I'm more lost with C.

Thanks!

iaacp
  • 4,403
  • 11
  • 32
  • 37

2 Answers2

111
if (strstr(request, "favicon") != NULL) {
    // contains
}
20
strstr(request, "favicon") != NULL
Fred Foo
  • 342,876
  • 71
  • 713
  • 819