| 1374 | return 0; |
| 1375 | } |
| 1376 | int isSpaceCharacter (const char & a) { |
| 1377 | if ((a == '\n')||(a == ' ')||(a == '\t')) |
| 1378 | return 1; |
| 1379 | return 0; |
| 1380 | } |
| 1381 | float polynomial(const float x, const double a, const double b, const double c){ //ax^2+bx+c |
| 1382 | return float(a*x*x+b*x+c); |
| 1383 | } |
nothing calls this directly
no outgoing calls
no test coverage detected