| 89 | return (bcd == 0 || (bcd > 0 && bcd <= 0x99 && bcd2bin_data[bcd] != 0)); |
| 90 | } |
| 91 | static __inline int imax(int a, int b) { return (a > b ? a : b); } |
| 92 | static __inline int imin(int a, int b) { return (a < b ? a : b); } |
| 93 | static __inline long lmax(long a, long b) { return (a > b ? a : b); } |
| 94 | static __inline long lmin(long a, long b) { return (a < b ? a : b); } |
no outgoing calls
no test coverage detected