mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
missing return
This commit is contained in:
+1
-1
@@ -959,7 +959,7 @@ int hextobinstring_n(char *target, char *source, int sourcelen) {
|
||||
}
|
||||
|
||||
// convert bytes to binary string
|
||||
int byte_2_binstr(char *target, const uint8_t *source, size_t sourcelen) {
|
||||
void byte_2_binstr(char *target, const uint8_t *source, size_t sourcelen) {
|
||||
//uint8_t *p = *source;
|
||||
for (int i = 0 ; i < sourcelen; ++i) {
|
||||
uint8_t b = *(source++);
|
||||
|
||||
+1
-1
@@ -122,7 +122,7 @@ int binarraytohex(char *target, const size_t targetlen, const char *source, size
|
||||
void binarraytobinstring(char *target, char *source, int length);
|
||||
int binstring2binarray(uint8_t *target, char *source, int length);
|
||||
|
||||
int byte_2_binstr(char *target, const uint8_t *source, size_t sourcelen);
|
||||
void byte_2_binstr(char *target, const uint8_t *source, size_t sourcelen);
|
||||
|
||||
uint8_t GetParity(const uint8_t *bits, uint8_t type, int length);
|
||||
void wiegand_add_parity(uint8_t *target, uint8_t *source, uint8_t length);
|
||||
|
||||
Reference in New Issue
Block a user