mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
fix fct name mismatch
This commit is contained in:
parent
9535bd5a11
commit
bae6f5196f
2 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ int hex2binarray(char *target, char *source) {
|
||||||
return hex2binarray_n(target, source, strlen(source));
|
return hex2binarray_n(target, source, strlen(source));
|
||||||
}
|
}
|
||||||
|
|
||||||
int hex2binarray_n(char *target, char *source, int sourcelen) {
|
int hex2binarray_n(char *target, const char *source, int sourcelen) {
|
||||||
int count = 0;
|
int count = 0;
|
||||||
|
|
||||||
// process 4 bits (1 hex digit) at a time
|
// process 4 bits (1 hex digit) at a time
|
||||||
|
|
|
@ -85,7 +85,7 @@ size_t nbytes(size_t nbits);
|
||||||
uint8_t hex2int(char x);
|
uint8_t hex2int(char x);
|
||||||
|
|
||||||
int hex2binarray(char *target, char *source);
|
int hex2binarray(char *target, char *source);
|
||||||
int hex2binarray_n(char *target, char *source, int sourcelen);
|
int hex2binarray_n(char *target, const char *source, int sourcelen);
|
||||||
int binarray2hex(const uint8_t *bs, int bs_len, uint8_t *hex);
|
int binarray2hex(const uint8_t *bs, int bs_len, uint8_t *hex);
|
||||||
|
|
||||||
void LED(int led, int ms);
|
void LED(int led, int ms);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue