* */
| 1012 | * |
| 1013 | */ |
| 1014 | static inline unsigned int mc_ndigits(int x) |
| 1015 | { |
| 1016 | unsigned int n = 0; |
| 1017 | |
| 1018 | while (x >= 10) { |
| 1019 | x /= 10; |
| 1020 | n++; |
| 1021 | } |
| 1022 | |
| 1023 | return n + 1; |
| 1024 | } |
| 1025 | |
| 1026 | /* |
| 1027 | * Compression function |
no outgoing calls
no test coverage detected