]> git.zerfleddert.de Git - proxmark3-svn/blame - common/bucketsort.h
FIX: lf hitag : Mea culpa, simulation should not have reader_field on. thanks to...
[proxmark3-svn] / common / bucketsort.h
CommitLineData
089d061f 1#ifndef BUCKETSORT_H__
2#define BUCKETSORT_H__
3e134b4c 3
089d061f 4#include <stdint.h>
089d061f 5#include <stdlib.h>
3e134b4c 6
089d061f 7typedef struct bucket {
8 uint32_t *head;
9 uint32_t *bp;
10} bucket_t;
11
12typedef bucket_t bucket_array_t[2][0x100];
13
14typedef struct bucket_info {
15 struct {
16 uint32_t *head, *tail;
17 } bucket_info[2][0x100];
18 uint32_t numbuckets;
19} bucket_info_t;
20
089d061f 21void bucket_sort_intersect(uint32_t* const estart, uint32_t* const estop,
22 uint32_t* const ostart, uint32_t* const ostop,
23 bucket_info_t *bucket_info, bucket_array_t bucket);
24#endif
Impressum, Datenschutz