| 205 | } |
| 206 | |
| 207 | static const xmlChar * |
| 208 | constString(xmlTextReaderPtr reader, const xmlChar *string) { |
| 209 | const xmlChar *dictString; |
| 210 | |
| 211 | if (string == NULL) |
| 212 | return(NULL); |
| 213 | |
| 214 | dictString = xmlDictLookup(reader->dict, string, -1); |
| 215 | if (dictString == NULL) |
| 216 | xmlTextReaderErrMemory(reader); |
| 217 | |
| 218 | return(dictString); |
| 219 | } |
| 220 | |
| 221 | static const xmlChar * |
| 222 | constQString(xmlTextReaderPtr reader, const xmlChar *prefix, |
no test coverage detected