| 875 | */ |
| 876 | |
| 877 | static xmlChar * |
| 878 | xmlPatScanQName(xmlPatParserContextPtr ctxt, xmlChar **prefix) { |
| 879 | xmlChar *ret = NULL; |
| 880 | |
| 881 | *prefix = NULL; |
| 882 | ret = xmlPatScanNCName(ctxt); |
| 883 | if (CUR == ':') { |
| 884 | *prefix = ret; |
| 885 | NEXT; |
| 886 | ret = xmlPatScanNCName(ctxt); |
| 887 | } |
| 888 | return(ret); |
| 889 | } |
| 890 | #endif |
| 891 | |
| 892 | /** |
nothing calls this directly
no test coverage detected