add comment

This commit is contained in:
Igor Sysoev 2007-10-01 13:00:30 +00:00
parent f53294103b
commit 6669702b00

View File

@ -503,6 +503,12 @@ ngx_strncasecmp(u_char *s1, u_char *s2, size_t n)
}
/*
* ngx_strstrn() and ngx_strcasestrn() are intended to search for static
* substring with known length in null-terminated string. The argument n
* must be length of the second substring - 1.
*/
u_char *
ngx_strstrn(u_char *s1, char *s2, size_t n)
{