* xmlGetLastError: * * Get the last global error registered. This is per thread if compiled * with thread support. * * Returns a pointer to the error */
| 919 | * Returns a pointer to the error |
| 920 | */ |
| 921 | const xmlError * |
| 922 | xmlGetLastError(void) |
| 923 | { |
| 924 | if (xmlLastError.code == XML_ERR_OK) |
| 925 | return (NULL); |
| 926 | return (&xmlLastError); |
| 927 | } |
| 928 | |
| 929 | /** |
| 930 | * xmlResetError: |
no outgoing calls
no test coverage detected