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

/httpd/modules/generators/
H A Dmod_autoindex.c1194 char titlebuf[MAX_STRING_LEN], *find = "<title>"; local
1211 apr_file_read(thefile, titlebuf, &n);
1216 titlebuf[n] = '\0';
1217 for (x = 0, p = 0; titlebuf[x]; x++) {
1218 if (apr_tolower(titlebuf[x]) == find[p]) {
1220 if ((p = ap_ind(&titlebuf[++x], '<')) != -1) {
1221 titlebuf[x + p] = '\0';
1224 for (y = x; titlebuf[y]; y++) {
1225 if ((titlebuf[y] == CR) || (titlebuf[
[all...]

Completed in 1736 milliseconds