This commit is contained in:
iceman1001 2024-11-20 23:32:02 +01:00
commit 2ad635ce57
8 changed files with 21 additions and 22 deletions

View file

@ -575,7 +575,7 @@ int char2int(char c) {
return -1; // Invalid character for hex
}
// returns the number of bytes written
// returns the number of bytes written
int hexstr2ByteArr(const char *hexstr, unsigned char *array, size_t asize) {
size_t n = 0;
while (hexstr[n] != '\0') {
@ -598,4 +598,4 @@ int hexstr2ByteArr(const char *hexstr, unsigned char *array, size_t asize) {
array[i >> 1] = (high << 4) | low;
}
return n >> 1;
}
}