Searched refs:no_digits (Results 1 – 2 of 2) sorted by relevance
330 void reverse_digits(unsigned char *xx, int no_digits) in reverse_digits() argument333 for (int count = 0; count < (no_digits / 2); count++) { in reverse_digits()335 xx[count] = xx[no_digits - count - 1]; in reverse_digits()336 xx[no_digits - count - 1] = temp; in reverse_digits()
82 void reverse_digits(unsigned char *xx, int no_digits);