| 2777 | If REVERSED, do not simply negate DIFF as that can mishandle INT_MIN. */ |
| 2778 | |
| 2779 | static int |
| 2780 | diff_reversed (int diff, bool reversed) |
| 2781 | { |
| 2782 | return reversed ? _GL_CMP (0, diff) : diff; |
| 2783 | } |
| 2784 | |
| 2785 | /* Compare two lines A and B trying every key in sequence until there |
| 2786 | are no more keys or a difference is found. */ |
no outgoing calls
no test coverage detected