MCPcopy Create free account
hub / github.com/ablab/spades / decDigitValue

Function decDigitValue

ext/src/llvm/APFloat.cpp:228–232  ·  view source on GitHub ↗

Returns 0U-9U. Return values >= 10U are not digits. */

Source from the content-addressed store, hash-verified

226
227/* Returns 0U-9U. Return values >= 10U are not digits. */
228static inline unsigned int
229decDigitValue(unsigned int c)
230{
231 return c - '0';
232}
233
234/* Return the value of a decimal exponent of the form
235 [+-]ddddddd.

Callers 4

readExponentFunction · 0.85
totalExponentFunction · 0.85
interpretDecimalFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected