X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=debug%2Fsorter%2Fretros.c;h=073cd8b078e32c94174494ccada181af56d97671;hb=b5b7b2641b00a18b53c48a1335846133f1d53168;hp=2281b733b44b3f5758b501fae5f4fd308c5ae5f2;hpb=d18403664f23ca1464d659b29912758d72b2abec;p=libucw.git diff --git a/debug/sorter/retros.c b/debug/sorter/retros.c index 2281b733..073cd8b0 100644 --- a/debug/sorter/retros.c +++ b/debug/sorter/retros.c @@ -1,10 +1,12 @@ /* - * An experiment with sorting algorithms + * Experiments with various sorting algorithms + * + * (c) 2007 Martin Mares */ #include "sherlock/sherlock.h" -#include "lib/getopt.h" -#include "lib/md5.h" +#include "ucw/getopt.h" +#include "ucw/md5.h" #include #include @@ -48,13 +50,13 @@ static int comp_ind(const void *x, const void *y) #define ASORT_ELT(i) a[i].key #define ASORT_SWAP(i,j) do { struct elt t=a[i]; a[i]=a[j]; a[j]=t; } while (0) #define ASORT_EXTRA_ARGS , struct elt *a -#include "lib/arraysort.h" +#include "ucw/arraysort.h" #define ASORT_PREFIX(x) asi_##x #define ASORT_KEY_TYPE u32 #define ASORT_ELT(i) ind[i]->key #define ASORT_SWAP(i,j) do { struct elt *t=ind[i]; ind[i]=ind[j]; ind[j]=t; } while (0) -#include "lib/arraysort.h" +#include "ucw/arraysort.h" static void r1_sort(void) {