| 115 | } |
| 116 | |
| 117 | unsigned char **GraphEncodeContext_GetMetaKeys(const GraphEncodeContext *ctx) { |
| 118 | ASSERT(ctx); |
| 119 | return raxKeys(ctx->meta_keys); |
| 120 | } |
| 121 | |
| 122 | void GraphEncodeContext_ClearMetaKeys(GraphEncodeContext *ctx) { |
| 123 | ASSERT(ctx); |
no test coverage detected