| 4567 | |
| 4568 | |
| 4569 | xmlChar * |
| 4570 | xmlParseAttValue(xmlParserCtxtPtr ctxt) { |
| 4571 | if ((ctxt == NULL) || (ctxt->input == NULL)) return(NULL); |
| 4572 | return(xmlParseAttValueInternal(ctxt, NULL, NULL, 0, 0)); |
| 4573 | } |
| 4574 | |
| 4575 | /** |
| 4576 | * xmlParseSystemLiteral: |
no test coverage detected