| 661 | }; |
| 662 | |
| 663 | static datatype_t FindDataTypeByStr(const string& str) { |
| 664 | for (int i = 0; !g_str2datatype[i].first.empty(); ++i) { |
| 665 | if (str == g_str2datatype[i].first) { |
| 666 | return g_str2datatype[i].second; |
| 667 | } |
| 668 | } |
| 669 | return DATATYPE_UNKNOWN; |
| 670 | } |
| 671 | |
| 672 | static const char* FindDataTypeStr(datatype_t dt) { |
| 673 | for (int i = 0; !g_str2datatype[i].first.empty(); ++i) { |
no outgoing calls
no test coverage detected