| 173 | #endif // defined(_MSC_VER) && defined(_M_IX86) && (_M_IX86<=500) |
| 174 | |
| 175 | static int Compare(const word *A, const word *B, unsigned int N) |
| 176 | { |
| 177 | while (N--) |
| 178 | if (A[N] > B[N]) |
| 179 | return 1; |
| 180 | else if (A[N] < B[N]) |
| 181 | return -1; |
| 182 | |
| 183 | return 0; |
| 184 | } |
| 185 | |
| 186 | static word Increment(word *A, unsigned int N, word B=1) |
| 187 | { |
no outgoing calls
no test coverage detected