| 398 | } |
| 399 | |
| 400 | CC_NOINLINE static cc_string GetCachedTag(const cc_string* url, struct StringsBuffer* list) { |
| 401 | cc_string key; char keyBuffer[STRING_INT_CHARS]; |
| 402 | String_InitArray(key, keyBuffer); |
| 403 | |
| 404 | HashUrl(&key, url); |
| 405 | return EntryList_UNSAFE_Get(list, &key, ' '); |
| 406 | } |
| 407 | |
| 408 | static cc_string GetCachedLastModified(const cc_string* url) { |
| 409 | int i; |
no test coverage detected