tool_binmode.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at https://curl.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. ***************************************************************************/
  22. #include "tool_setup.h"
  23. #ifdef HAVE_SETMODE
  24. #ifdef HAVE_IO_H
  25. # include <io.h>
  26. #endif
  27. #ifdef HAVE_FCNTL_H
  28. # include <fcntl.h>
  29. #endif
  30. #include "tool_binmode.h"
  31. #include "memdebug.h" /* keep this as LAST include */
  32. void set_binmode(FILE *stream)
  33. {
  34. #ifdef O_BINARY
  35. # ifdef __HIGHC__
  36. _setmode(stream, O_BINARY);
  37. # else
  38. (void)setmode(fileno(stream), O_BINARY);
  39. # endif
  40. #else
  41. (void)stream;
  42. #endif
  43. }
  44. #endif /* HAVE_SETMODE */