diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-02-01 18:09:27 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-02-01 18:09:27 +0000 |
commit | 5cb99857bc0633757f60c4b964359c5a03121b28 (patch) | |
tree | 707a2ad60ab69f54eb9e4716d0fa9df50c77686f /src/common/util.h | |
parent | 8a9a55251ffe14389a96e99bdcc7af59b0f1c8ba (diff) | |
download | tor-5cb99857bc0633757f60c4b964359c5a03121b28.tar.gz tor-5cb99857bc0633757f60c4b964359c5a03121b28.zip |
r11620@catbus: nickm | 2007-02-01 13:06:27 -0500
Call stat() slightly less often; use fstat() when possible.
svn:r9472
Diffstat (limited to 'src/common/util.h')
-rw-r--r-- | src/common/util.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/util.h b/src/common/util.h index 3ada73d4b7..b659e5f04e 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -182,7 +182,8 @@ int write_chunks_to_file(const char *fname, const struct smartlist_t *chunks, int append_bytes_to_file(const char *fname, const char *str, size_t len, int bin); -char *read_file_to_str(const char *filename, int bin, size_t *size_out) +struct stat; +char *read_file_to_str(const char *filename, int bin, struct stat *stat_out) ATTR_MALLOC; char *parse_line_from_str(char *line, char **key_out, char **value_out); char *expand_filename(const char *filename); |