| 3391 | } |
| 3392 | |
| 3393 | PUGI__FN void text_output(xml_buffered_writer& writer, const char_t* s, chartypex_t type, unsigned int flags) |
| 3394 | { |
| 3395 | if (flags & format_no_escapes) |
| 3396 | writer.write(s); |
| 3397 | else |
| 3398 | text_output_escaped(writer, s, type); |
| 3399 | } |
| 3400 | |
| 3401 | PUGI__FN void text_output_cdata(xml_buffered_writer& writer, const char_t* s) |
| 3402 | { |
no test coverage detected