| 73 | unsigned LibRaw::getint(int type) { return tagtypeIs(LIBRAW_EXIFTAG_TYPE_SHORT) ? get2() : get4(); } |
| 74 | |
| 75 | float libraw_int_to_float(int i) |
| 76 | { |
| 77 | union { |
| 78 | int i; |
| 79 | float f; |
| 80 | } u; |
| 81 | u.i = i; |
| 82 | return u.f; |
| 83 | } |
| 84 | |
| 85 | float LibRaw::int_to_float(int i) { return libraw_int_to_float(i); } |
| 86 |
no outgoing calls
no test coverage detected