aboutsummaryrefslogtreecommitdiff
path: root/src/common/util.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-11-03 19:02:48 +0000
committerNick Mathewson <nickm@torproject.org>2004-11-03 19:02:48 +0000
commitd5244e3872ff3a6aa91eebdcb268ae7deccbf193 (patch)
treec3d06aec5ff38c9206e25b82ef2151be0ae0e525 /src/common/util.h
parent451f8b50452ae44c4319cfe55c666a45b9994e9f (diff)
downloadtor-d5244e3872ff3a6aa91eebdcb268ae7deccbf193.tar.gz
tor-d5244e3872ff3a6aa91eebdcb268ae7deccbf193.zip
Add a write_bytes_to_file so we can have files with NULs in them.
svn:r2662
Diffstat (limited to 'src/common/util.h')
-rw-r--r--src/common/util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/util.h b/src/common/util.h
index 6e674e4180..dba95e456d 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -88,6 +88,8 @@ file_status_t file_status(const char *filename);
int check_private_dir(const char *dirname, int create);
int write_str_to_file(const char *fname, const char *str, int bin);
+int write_bytes_to_file(const char *fname, const char *str, size_t len,
+ int bin);
char *read_file_to_str(const char *filename, int bin);
int parse_line_from_file(char *line, size_t maxlen, FILE *f, char **key_out, char **value_out);
char *expand_filename(const char *filename);