X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/480e2f239421563263d07f6d11f2c929d7f14d1f..e1778858ddc53a6a82e8ee24f02e6b673687f69a:/common/bucketsort.h diff --git a/common/bucketsort.h b/common/bucketsort.h index 399277c1..be504508 100644 --- a/common/bucketsort.h +++ b/common/bucketsort.h @@ -1,8 +1,9 @@ #ifndef BUCKETSORT_H__ #define BUCKETSORT_H__ + #include -#include #include + typedef struct bucket { uint32_t *head; uint32_t *bp; @@ -17,9 +18,6 @@ typedef struct bucket_info { uint32_t numbuckets; } bucket_info_t; - -bool bucket_malloc(bucket_array_t bucket); -void bucket_free(bucket_array_t bucket); void bucket_sort_intersect(uint32_t* const estart, uint32_t* const estop, uint32_t* const ostart, uint32_t* const ostop, bucket_info_t *bucket_info, bucket_array_t bucket);