From 940d36d8a1521f171674e358dada3305e66d48da Mon Sep 17 00:00:00 2001 From: "admin@omencraft.com" Date: Sun, 30 Oct 2011 18:15:44 +0000 Subject: put the timer and quicksort functions into their own files. Made a few changes to the converter. Converter doesn't understand Entity tags and some chunks cause it to segfault for a currently unknown reason. git-svn-id: http://mc-server.googlecode.com/svn/trunk@28 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- converter/quicksort.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 converter/quicksort.h (limited to 'converter/quicksort.h') diff --git a/converter/quicksort.h b/converter/quicksort.h new file mode 100644 index 000000000..b3be0e36b --- /dev/null +++ b/converter/quicksort.h @@ -0,0 +1,9 @@ +#pragma once + +#include + +void quicksort(int*, int, int); +int partition(int*, int, int, int); +int median3(int*,int,int); +void swap(int &, int &); + -- cgit v1.2.3