| 52 | } |
| 53 | |
| 54 | void GraphDecodeContext_ClearMetaKeys(GraphDecodeContext *ctx) { |
| 55 | ASSERT(ctx); |
| 56 | raxFree(ctx->meta_keys); |
| 57 | ctx->meta_keys = raxNew(); |
| 58 | } |
| 59 | |
| 60 | // Returns if the the number of processed keys is equal to the total number of graph keys. |
| 61 | bool GraphDecodeContext_Finished(const GraphDecodeContext *ctx) { |
no outgoing calls
no test coverage detected