mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-07 21:51:17 -07:00
removed unused compiler directives, cleaned up some code
This commit is contained in:
parent
0dae56d81e
commit
b1231445c7
3 changed files with 1 additions and 29 deletions
|
@ -15,7 +15,7 @@ OBJDIR = obj
|
||||||
|
|
||||||
LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread ../liblua/liblua.a
|
LDLIBS = -L/opt/local/lib -L/usr/local/lib -lreadline -lpthread ../liblua/liblua.a
|
||||||
LDFLAGS = $(COMMON_FLAGS)
|
LDFLAGS = $(COMMON_FLAGS)
|
||||||
CFLAGS = -std=c99 -fms-extensions -I. -I../include -I../common -I/opt/local/include -I../liblua -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O4
|
CFLAGS = -std=c99 -I. -I../include -I../common -I/opt/local/include -I../liblua -Wall $(COMMON_FLAGS) -g -O4
|
||||||
LUAPLATFORM = generic
|
LUAPLATFORM = generic
|
||||||
|
|
||||||
ifneq (,$(findstring MINGW,$(platform)))
|
ifneq (,$(findstring MINGW,$(platform)))
|
||||||
|
|
|
@ -45,8 +45,6 @@
|
||||||
#define AddCrc(data,datalen) Iso15693AddCrc(data,datalen)
|
#define AddCrc(data,datalen) Iso15693AddCrc(data,datalen)
|
||||||
#define sprintUID(target,uid) Iso15693sprintUID(target,uid)
|
#define sprintUID(target,uid) Iso15693sprintUID(target,uid)
|
||||||
|
|
||||||
static int CmdHelp(const char *Cmd);
|
|
||||||
|
|
||||||
// structure and database for uid -> tagtype lookups
|
// structure and database for uid -> tagtype lookups
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint64_t uid;
|
uint64_t uid;
|
||||||
|
|
|
@ -95,32 +95,6 @@ static void bucket_sort_intersect(uint32_t* const estart, uint32_t* const estop,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void quicksort(uint32_t* const start, uint32_t* const stop)
|
|
||||||
{
|
|
||||||
uint32_t *it = start + 1, *rit = stop;
|
|
||||||
|
|
||||||
if(it > rit)
|
|
||||||
return;
|
|
||||||
|
|
||||||
while(it < rit)
|
|
||||||
if(*it <= *start)
|
|
||||||
++it;
|
|
||||||
else if(*rit > *start)
|
|
||||||
--rit;
|
|
||||||
else
|
|
||||||
*it ^= (*it ^= *rit, *rit ^= *it);
|
|
||||||
|
|
||||||
if(*rit >= *start)
|
|
||||||
--rit;
|
|
||||||
if(rit != start)
|
|
||||||
*rit ^= (*rit ^= *start, *start ^= *rit);
|
|
||||||
|
|
||||||
quicksort(start, rit - 1);
|
|
||||||
quicksort(rit + 1, stop);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/** binsearch
|
/** binsearch
|
||||||
* Binary search for the first occurence of *stop's MSB in sorted [start,stop]
|
* Binary search for the first occurence of *stop's MSB in sorted [start,stop]
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue