Returns if the the number of processed keys is equal to the total number of graph keys.
| 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) { |
| 62 | ASSERT(ctx); |
| 63 | return ctx->keys_processed == ctx->graph_keys_count; |
| 64 | } |
| 65 | |
| 66 | void GraphDecodeContext_IncreaseProcessedKeyCount(GraphDecodeContext *ctx) { |
| 67 | ASSERT(ctx); |
no outgoing calls
no test coverage detected