Searched defs:nsize (Results 1 - 1 of 1) sorted by relevance

/httpd/modules/lua/
H A Dlua_request.c322 static char* ap_lua_binstrstr (const char * haystack, size_t hsize, const char* needle, size_t nsize) argument
327 if (hsize < nsize) return NULL;
328 for (p = 0; p <= (hsize - nsize); ++p) {
329 if (memcmp(haystack + p, needle, nsize) == 0) {

Completed in 40 milliseconds