Tor  0.4.7.0-alpha-dev
fdio.h
Go to the documentation of this file.
1 /* Copyright (c) 2003-2004, Roger Dingledine
2  * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
3  * Copyright (c) 2007-2021, The Tor Project, Inc. */
4 /* See LICENSE for licensing information */
5 
6 /**
7  * \file fdio.h
8  *
9  * \brief Header for fdio.c
10  **/
11 
12 #ifndef TOR_FDIO_H
13 #define TOR_FDIO_H
14 
15 #include <stddef.h>
16 #ifdef HAVE_SYS_TYPES_H
17 #include <sys/types.h>
18 #endif
19 
20 off_t tor_fd_getpos(int fd);
21 int tor_fd_setpos(int fd, off_t pos);
22 int tor_fd_seekend(int fd);
23 int tor_ftruncate(int fd);
24 int write_all_to_fd_minimal(int fd, const char *buf, size_t count);
25 
26 #endif /* !defined(TOR_FDIO_H) */
int tor_fd_seekend(int fd)
Definition: fdio.c:61
off_t tor_fd_getpos(int fd)
Definition: fdio.c:48
int write_all_to_fd_minimal(int fd, const char *buf, size_t count)
Definition: fdio.c:108
int tor_ftruncate(int fd)
Definition: fdio.c:92
int tor_fd_setpos(int fd, off_t pos)
Definition: fdio.c:80