| 11 | #include "../configuration/config.h" |
| 12 | |
| 13 | GraphEncodeContext *GraphEncodeContext_New() { |
| 14 | GraphEncodeContext *ctx = rm_calloc(1, sizeof(GraphEncodeContext)); |
| 15 | ctx->meta_keys = raxNew(); |
| 16 | GraphEncodeContext_Reset(ctx); |
| 17 | return ctx; |
| 18 | } |
| 19 | |
| 20 | static void _GraphEncodeContext_ResetHeader(GraphEncodeContext *ctx) { |
| 21 | ASSERT(ctx != NULL); |
no test coverage detected