METType To String
| 238 | // METType To String |
| 239 | // |
| 240 | bool |
| 241 | MET_TypeToString(MET_ValueEnumType _vType, char * _s) |
| 242 | { |
| 243 | assert(_vType >= 0); |
| 244 | if (_vType < MET_NUM_VALUE_TYPES) |
| 245 | { |
| 246 | strcpy(_s, MET_ValueTypeName[_vType]); |
| 247 | return true; |
| 248 | } |
| 249 | |
| 250 | return false; |
| 251 | } |
| 252 | |
| 253 | |
| 254 | // |
no test coverage detected