Declaring the sign of v and returning it.
| 43 | |
| 44 | // Declaring the sign of v and returning it. |
| 45 | inline int |
| 46 | sgn(double v) |
| 47 | { |
| 48 | return ((v < 0) ? -1 : (v > 0) ? 1 : 0); |
| 49 | } |
| 50 | |
| 51 | FoilInterface foilA; |
| 52 |
no outgoing calls
no test coverage detected