| 2103 | hideously fast. */ |
| 2104 | |
| 2105 | ATTRIBUTE_PURE |
| 2106 | static int |
| 2107 | numcompare (char const *a, char const *b) |
| 2108 | { |
| 2109 | while (blanks[to_uchar (*a)]) |
| 2110 | a++; |
| 2111 | while (blanks[to_uchar (*b)]) |
| 2112 | b++; |
| 2113 | |
| 2114 | return strnumcmp (a, b, decimal_point, thousands_sep); |
| 2115 | } |
| 2116 | |
| 2117 | static int |
| 2118 | nan_compare (long double a, long double b) |
no test coverage detected