| 61 | } |
| 62 | |
| 63 | std::string tool_StripLeadingZero(const std::string& pValue) { |
| 64 | std::string Final = pValue; |
| 65 | |
| 66 | while (*Final.begin() == 0x30 && Final.length() > 1) { |
| 67 | |
| 68 | Final.erase(Final.begin()); |
| 69 | } |
| 70 | |
| 71 | return Final; |
| 72 | } |
| 73 | |
| 74 | uint16 tool_DecimalToBinaryCodedDecimal(uint16 pDecimal) { |
| 75 |
no test coverage detected