| 10189 | } |
| 10190 | |
| 10191 | static void |
| 10192 | xmlSchemaSchemaRelationAddChild(xmlSchemaBucketPtr bucket, |
| 10193 | xmlSchemaSchemaRelationPtr rel) |
| 10194 | { |
| 10195 | xmlSchemaSchemaRelationPtr cur = bucket->relations; |
| 10196 | |
| 10197 | if (cur == NULL) { |
| 10198 | bucket->relations = rel; |
| 10199 | return; |
| 10200 | } |
| 10201 | while (cur->next != NULL) |
| 10202 | cur = cur->next; |
| 10203 | cur->next = rel; |
| 10204 | } |
| 10205 | |
| 10206 | |
| 10207 | static const xmlChar * |
no outgoing calls
no test coverage detected