| 4327 | } |
| 4328 | |
| 4329 | PUGI__FN bool xml_attribute::set_name(const char_t* rhs) |
| 4330 | { |
| 4331 | if (!_attr) |
| 4332 | return false; |
| 4333 | |
| 4334 | return impl::strcpy_insitu(_attr->name, _attr->header, impl::xml_memory_page_name_allocated_mask, rhs); |
| 4335 | } |
| 4336 | |
| 4337 | PUGI__FN bool xml_attribute::set_value(const char_t* rhs) |
| 4338 | { |
no test coverage detected