| 729 | } |
| 730 | |
| 731 | static int8_t HexToDec(char c) |
| 732 | { |
| 733 | if (isdigit(c)) |
| 734 | { |
| 735 | return c - '0'; |
| 736 | } |
| 737 | else if(islower(c) && c <= 'f') |
| 738 | { |
| 739 | return c - 'a' + 10; |
| 740 | } |
| 741 | return -1; |
| 742 | } |
| 743 | |
| 744 | string DemangleGNU3::DemanglePrimaryExpression() |
| 745 | { |
no outgoing calls
no test coverage detected