* xmlResetLastError: * * Cleanup the last global error registered. For parsing error * this does not change the well-formedness result. */
| 960 | * this does not change the well-formedness result. |
| 961 | */ |
| 962 | void |
| 963 | xmlResetLastError(void) |
| 964 | { |
| 965 | if (xmlLastError.code == XML_ERR_OK) |
| 966 | return; |
| 967 | xmlResetError(&xmlLastError); |
| 968 | } |
| 969 | |
| 970 | /** |
| 971 | * xmlCtxtGetLastError: |