MCPcopy Create free account
hub / github.com/BoevaLab/FREEC / isSpaceCharacter

Function isSpaceCharacter

src/myFunc.cpp:1376–1380  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1374 return 0;
1375}
1376int isSpaceCharacter (const char & a) {
1377 if ((a == '\n')||(a == ' ')||(a == '\t'))
1378 return 1;
1379 return 0;
1380}
1381float 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected