fdio.h 490 B

1234567891011121314151617
  1. /* Copyright (c) 2003-2004, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2018, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. #ifndef TOR_FDIO_H
  6. #define TOR_FDIO_H
  7. #include <stddef.h>
  8. off_t tor_fd_getpos(int fd);
  9. int tor_fd_setpos(int fd, off_t pos);
  10. int tor_fd_seekend(int fd);
  11. int tor_ftruncate(int fd);
  12. int write_all_to_fd_minimal(int fd, const char *buf, size_t count);
  13. #endif /* !defined(TOR_FDIO_H) */