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