| 110 | } |
| 111 | |
| 112 | void GraphEncodeContext_AddMetaKey(GraphEncodeContext *ctx, const char *key) { |
| 113 | ASSERT(ctx); |
| 114 | raxInsert(ctx->meta_keys, (unsigned char *)key, strlen(key), NULL, NULL); |
| 115 | } |
| 116 | |
| 117 | unsigned char **GraphEncodeContext_GetMetaKeys(const GraphEncodeContext *ctx) { |
| 118 | ASSERT(ctx); |
no outgoing calls
no test coverage detected