strerror.h 421 B

12345678910111213141516171819202122232425
  1. /* Gearman server and library
  2. * Copyright (C) 2010 Brian Aker, Eric Day
  3. * All rights reserved.
  4. *
  5. * Use and distribution licensed under the BSD license. See
  6. * the COPYING file in the parent directory for full text.
  7. */
  8. /**
  9. * @file
  10. * @brief Gearman Declarations
  11. */
  12. #pragma once
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. GEARMAN_API
  17. const char *gearman_strerror(gearman_return_t rc);
  18. #ifdef __cplusplus
  19. }
  20. #endif