| 118 | } |
| 119 | |
| 120 | static std::string changeStaticArrayToPtr(std::string str) { |
| 121 | std::string ret = regex(str, "(.+)\\[.*\\]", 1); |
| 122 | return ret.empty() ? str : ret + "*"; |
| 123 | } |
| 124 | |
| 125 | static std::string inline getFuzzInputTypeString(std::string str) { |
| 126 | return changeStaticArrayToPtr(stripConstExpr(str)); |
no test coverage detected