mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
23 lines
472 B
C
23 lines
472 B
C
#ifndef RADIXSORT_H__
|
|
#define RADIXSORT_H__
|
|
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef union {
|
|
struct {
|
|
uint32_t c8[256];
|
|
uint32_t c7[256];
|
|
uint32_t c6[256];
|
|
uint32_t c5[256];
|
|
uint32_t c4[256];
|
|
uint32_t c3[256];
|
|
uint32_t c2[256];
|
|
uint32_t c1[256];
|
|
};
|
|
uint32_t counts[256 * 8];
|
|
} rscounts_t;
|
|
|
|
uint64_t *radixSort(uint64_t *array, uint32_t size);
|
|
#endif // RADIXSORT_H__
|