aboutsummaryrefslogtreecommitdiff
path: root/src/sort.c
blob: ed5a1e3bf20605b5fc5bf477440315c5783f22da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "sort.h"

#include "basic_traits.h"


QSORT_IMPL(Int);
QSORT_IMPL(Bool);
QSORT_IMPL(Long);
QSORT_IMPL(Char);
QSORT_IMPL(UInt);
QSORT_IMPL(ULong);
QSORT_IMPL(Double);
QSORT_IMPL(Float);
QSORT_IMPL(String);