#define  _GNU_SOURCE
#include <stdio.h>
#include <string.h>

int main()
{
    char buffer[100] = "Something-something Content-Length: nnnn";
    char *tmpcp;
    tmpcp = strcasestr(buffer, "Content-Length:");
    printf("%p \n%p\n",tmpcp,buffer);
}
