| 1440 | } |
| 1441 | |
| 1442 | static const xmlChar* |
| 1443 | xmlSchemaGetComponentDesignation(xmlChar **buf, void *item) |
| 1444 | { |
| 1445 | xmlChar *str = NULL; |
| 1446 | |
| 1447 | *buf = xmlStrcat(*buf, WXS_ITEM_TYPE_NAME(item)); |
| 1448 | *buf = xmlStrcat(*buf, BAD_CAST " '"); |
| 1449 | *buf = xmlStrcat(*buf, xmlSchemaGetComponentQName(&str, |
| 1450 | (xmlSchemaBasicItemPtr) item)); |
| 1451 | *buf = xmlStrcat(*buf, BAD_CAST "'"); |
| 1452 | FREE_AND_NULL(str); |
| 1453 | return(*buf); |
| 1454 | } |
| 1455 | |
| 1456 | static const xmlChar* |
| 1457 | xmlSchemaGetIDCDesignation(xmlChar **buf, xmlSchemaIDCPtr idc) |
no test coverage detected