| 6 | #include <float.h> |
| 7 | |
| 8 | void GetEscapedName(char* result) |
| 9 | { |
| 10 | unsigned int finalLength = strlen(result); |
| 11 | for(unsigned int k = 0; k < finalLength; k++) |
| 12 | { |
| 13 | if(result[k] == ':' || result[k] == '$' || result[k] == '[' || result[k] == ']' || result[k] == ' ' || result[k] == '(' || result[k] == ')' || result[k] == ',') |
| 14 | result[k] = '_'; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | void GetCFunctionName(char* fName, unsigned int size, FunctionInfo *funcInfo) |
| 19 | { |
no outgoing calls
no test coverage detected