Returns the unsigned value of an int.
(int value)
| 111 | * Returns the unsigned value of an int. |
| 112 | */ |
| 113 | public static int abs_int(int value) |
| 114 | { |
| 115 | return value >= 0 ? value : -value; |
| 116 | } |
| 117 | |
| 118 | public static int ceiling_float_int(float value) |
| 119 | { |
no outgoing calls
no test coverage detected