| 467 | |
| 468 | |
| 469 | static int Compare(const word *A, const word *B, unsigned int N) |
| 470 | { |
| 471 | while (N--) |
| 472 | if (A[N] > B[N]) |
| 473 | return 1; |
| 474 | else if (A[N] < B[N]) |
| 475 | return -1; |
| 476 | |
| 477 | return 0; |
| 478 | } |
| 479 | |
| 480 | static word Increment(word *A, unsigned int N, word B=1) |
| 481 | { |