fork download
  1. #define _GNU_SOURCE
  2. #include <stdio.h>
  3. #include <string.h>
  4.  
  5. int main()
  6. {
  7. char buffer[100] = "Something-something Content-Length: nnnn";
  8. char *tmpcp;
  9. tmpcp = strcasestr(buffer, "Content-Length:");
  10. printf("%p \n%p\n",tmpcp,buffer);
  11. }
  12.  
Success #stdin #stdout 0.01s 1676KB
stdin
Standard input is empty
stdout
0xbfe42310 
0xbfe422fc