tool_setup.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #ifndef HEADER_CURL_TOOL_SETUP_H
  2. #define HEADER_CURL_TOOL_SETUP_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at https://curl.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. * SPDX-License-Identifier: curl
  24. *
  25. ***************************************************************************/
  26. #define CURL_NO_OLDIES
  27. /*
  28. * curl_setup.h may define preprocessor macros such as _FILE_OFFSET_BITS and
  29. * _LARGE_FILES in order to support files larger than 2 GB. On platforms
  30. * where this happens it is mandatory that these macros are defined before
  31. * any system header file is included, otherwise file handling function
  32. * prototypes will be misdeclared and curl tool may not build properly;
  33. * therefore we must include curl_setup.h before curl.h when building curl.
  34. */
  35. #include "curl_setup.h" /* from the lib directory */
  36. /*
  37. * curl tool certainly uses libcurl's external interface.
  38. */
  39. #include <curl/curl.h> /* external interface */
  40. /*
  41. * Platform specific stuff.
  42. */
  43. #ifdef macintosh
  44. # define main(x,y) curl_main(x,y)
  45. #endif
  46. #ifndef OS
  47. # define OS "unknown"
  48. #endif
  49. #ifndef UNPRINTABLE_CHAR
  50. /* define what to use for unprintable characters */
  51. # define UNPRINTABLE_CHAR '.'
  52. #endif
  53. #ifndef HAVE_STRDUP
  54. # include "tool_strdup.h"
  55. #endif
  56. #endif /* HEADER_CURL_TOOL_SETUP_H */