| 19865 | } |
| 19866 | |
| 19867 | const void * gguf_get_arr_data(const struct gguf_context * ctx, int key_id) { |
| 19868 | GGML_ASSERT(ctx->kv[key_id].type == GGUF_TYPE_ARRAY); |
| 19869 | return ctx->kv[key_id].value.arr.data; |
| 19870 | } |
| 19871 | |
| 19872 | const char * gguf_get_arr_str(const struct gguf_context * ctx, int key_id, int i) { |
| 19873 | GGML_ASSERT(ctx->kv[key_id].type == GGUF_TYPE_ARRAY); |
no outgoing calls
no test coverage detected