ERR_clear_error.pod 655 B

12345678910111213141516171819202122232425262728293031323334
  1. =pod
  2. =head1 NAME
  3. ERR_clear_error - clear the error queue
  4. =head1 SYNOPSIS
  5. #include <openssl/err.h>
  6. void ERR_clear_error(void);
  7. =head1 DESCRIPTION
  8. ERR_clear_error() empties the current thread's error queue.
  9. =head1 RETURN VALUES
  10. ERR_clear_error() has no return value.
  11. =head1 SEE ALSO
  12. L<ERR_get_error(3)>
  13. =head1 COPYRIGHT
  14. Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
  15. Licensed under the Apache License 2.0 (the "License"). You may not use
  16. this file except in compliance with the License. You can obtain a copy
  17. in the file LICENSE in the source distribution or at
  18. L<https://www.openssl.org/source/license.html>.
  19. =cut