| 116 | |
| 117 | |
| 118 | UriBool uriMemoryManagerIsComplete(const UriMemoryManager * memory) { |
| 119 | return (memory |
| 120 | && memory->malloc |
| 121 | && memory->calloc |
| 122 | && memory->realloc |
| 123 | && memory->reallocarray |
| 124 | && memory->free) ? URI_TRUE : URI_FALSE; |
| 125 | } |
| 126 | |
| 127 | |
| 128 |
no outgoing calls
no test coverage detected