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

/httpd/server/
H A Dutil.c337 * Returns an offsetted pointer in bigstring immediately after
338 * prefix. Returns bigstring if bigstring doesn't start with
339 * prefix or if prefix is longer than bigstring while still matching.
340 * NOTE: pointer returned is relative to bigstring, so we
344 AP_DECLARE(const char *) ap_stripprefix(const char *bigstring, argument
350 return bigstring;
352 p1 = bigstring;
355 return bigstring;
360 /* hit the end of bigstring! */
[all...]

Completed in 17 milliseconds