| 47 | } |
| 48 | |
| 49 | unsigned char **GraphDecodeContext_GetMetaKeys(const GraphDecodeContext *ctx) { |
| 50 | ASSERT(ctx); |
| 51 | return raxKeys(ctx->meta_keys); |
| 52 | } |
| 53 | |
| 54 | void GraphDecodeContext_ClearMetaKeys(GraphDecodeContext *ctx) { |
| 55 | ASSERT(ctx); |
no test coverage detected