| 915 | } |
| 916 | |
| 917 | CACHE_DECLARE(char *)ap_cache_generate_name(apr_pool_t *p, int dirlevels, |
| 918 | int dirlength, const char *name) |
| 919 | { |
| 920 | char hashfile[66]; |
| 921 | cache_hash(name, hashfile, dirlevels, dirlength); |
| 922 | return apr_pstrdup(p, hashfile); |
| 923 | } |
| 924 | |
| 925 | /** |
| 926 | * String tokenizer that ignores separator characters within quoted strings |
no test coverage detected