| 1811 | ** call to xShutdown(). |
| 1812 | */ |
| 1813 | typedef struct sqlite3_mem_methods sqlite3_mem_methods; |
| 1814 | struct sqlite3_mem_methods { |
| 1815 | void *(*xMalloc)(int); /* Memory allocation function */ |
| 1816 | void (*xFree)(void*); /* Free a prior allocation */ |
nothing calls this directly
no outgoing calls
no test coverage detected