Searched refs:found_end (Results 1 – 2 of 2) sorted by relevance
115 char *found_end = strcasestr(found, end); in http_utils_get_string_between() local116 if (found_end) { in http_utils_get_string_between()117 ret = calloc(1, found_end - found + 1); in http_utils_get_string_between()119 memcpy(ret, found, found_end - found); in http_utils_get_string_between()
133 char *found_end = strstr(found, "\r\n"); in get_http_header() local134 if (found_end) { in get_http_header()135 found_end[0] = 0;//terminal string in get_http_header()