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

/httpd/modules/metadata/
H A Dmod_mime_magic.c123 /* SMALL_HOWMANY limits how much work we do to figure out text files */
124 #define SMALL_HOWMANY 1024 macro
1976 char nbuf[SMALL_HOWMANY + 1]; /* one extra for terminating '\0' */
2007 * ourselves to only SMALL_HOWMANY bytes */
2008 small_nbytes = (nbytes > SMALL_HOWMANY) ? SMALL_HOWMANY : nbytes;

Completed in 39 milliseconds