From 48296bb1cf6b8cd1375797020def6e8d7afcd58c Mon Sep 17 00:00:00 2001 From: Evelyn Date: Fri, 22 Jul 2016 16:16:21 +0100 Subject: [PATCH] Update mg_get_http_header.md --- docs/c-api/http.h/mg_get_http_header.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/c-api/http.h/mg_get_http_header.md b/docs/c-api/http.h/mg_get_http_header.md index 5c6d85ba..b33e91f4 100644 --- a/docs/c-api/http.h/mg_get_http_header.md +++ b/docs/c-api/http.h/mg_get_http_header.md @@ -6,7 +6,7 @@ signature: | struct mg_str *mg_get_http_header(struct http_message *hm, const char *name); --- -Search and return header `name` in parsed HTTP message `hm`. +Searches and returns the header `name` in parsed HTTP message `hm`. If header is not found, NULL is returned. Example: struct mg_str *host_hdr = mg_get_http_header(hm, "Host");