From a542b5d638db3b1cceeaeb08a07bab541ec7785f Mon Sep 17 00:00:00 2001 From: Bobby Bingham Date: Thu, 31 Jul 2014 21:50:28 -0500 Subject: Remove grailsort dependency on bsearch --- grailsort.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/grailsort.c b/grailsort.c index 67528ca..8d69b97 100644 --- a/grailsort.c +++ b/grailsort.c @@ -19,9 +19,9 @@ size_t merge(char *buf, char *base, size_t anmel, size_t bnmel, size_t width, cm { char *a = buf; char *b = base + anmel * width; - size_t sorted = binary_search(b, base, anmel, width, cmp); - base += sorted * width; - anmel -= sorted; + size_t sorted; + + for (sorted = 0; anmel && bnmel && cmp(base, b) <= 0; sorted++, anmel--) base += width; swap(base, a, anmel * width); -- cgit v1.2.3