--------------------------------- Compare Check if two parameter blocks hold the same data
| 114 | // Check if two parameter blocks hold the same data |
| 115 | // |
| 116 | bool Compare(T_ConstParameterBlock const lhs, T_ConstParameterBlock const rhs, size_t const offset, E_ParamType const type) |
| 117 | { |
| 118 | return (memcmp(lhs + offset, rhs + offset, GetSize(type)) == 0); |
| 119 | } |
| 120 | |
| 121 | |
| 122 | } // namespace parameters |
no test coverage detected