| 21 | using namespace srt; |
| 22 | |
| 23 | void ShowDistance(int32_t s1, int32_t s2) |
| 24 | { |
| 25 | using namespace std; |
| 26 | |
| 27 | cout << "s1=" << s1 << "s2=" << s2 << " DISTANCE:\n"; |
| 28 | cout << "seqcmp -> " << CSeqNo::seqcmp(s1, s2) << endl; |
| 29 | cout << "seqoff -> " << CSeqNo::seqoff(s2, s1) << endl; |
| 30 | } |
| 31 | |
| 32 | int main() |
| 33 | { |