git/reftable/pq.c

/*
Copyright 2020 Google LLC

Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file or at
https://developers.google.com/open-source/licenses/bsd
*/

#include "pq.h"

#include "reftable-error.h"
#include "reftable-record.h"
#include "system.h"
#include "basics.h"

int pq_less(struct pq_entry *a, struct pq_entry *b)
{}

struct pq_entry merged_iter_pqueue_remove(struct merged_iter_pqueue *pq)
{}

int merged_iter_pqueue_add(struct merged_iter_pqueue *pq, const struct pq_entry *e)
{}

void merged_iter_pqueue_release(struct merged_iter_pqueue *pq)
{}