* xmlWalkValidateList: * @data: Contents of current link * @user: Value supplied by the user * * Returns 0 to abort the walk or 1 to continue */
| 6362 | * Returns 0 to abort the walk or 1 to continue |
| 6363 | */ |
| 6364 | static int |
| 6365 | xmlWalkValidateList(const void *data, void *user) |
| 6366 | { |
| 6367 | xmlValidateMemoPtr memo = (xmlValidateMemoPtr)user; |
| 6368 | xmlValidateRef((xmlRefPtr)data, memo->ctxt, memo->name); |
| 6369 | return 1; |
| 6370 | } |
| 6371 | |
| 6372 | /** |
| 6373 | * xmlValidateCheckRefCallback: |
nothing calls this directly
no test coverage detected