| 3 | #include <cstdlib> |
| 4 | |
| 5 | static int cmpint2(const void *p, const void *q) |
| 6 | { |
| 7 | int a = *static_cast<const int*>(p); |
| 8 | int b = *static_cast<const int*>(q); |
| 9 | return a < b ? -1 : a > b ? 1 : 0; |
| 10 | } |
| 11 | |
| 12 | int reflex::Unicode::Tables::tolower(int c) |
| 13 | { |
nothing calls this directly
no outgoing calls
no test coverage detected