diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-10 10:23:29 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-10 10:36:49 -0400 |
commit | b04d719c1067dd1cf9b48295f1d0e7ed5adb7255 (patch) | |
tree | 72a2e38a6f703aa7d85b6736d5be62afa59044f0 /src/lib/fs/files.h | |
parent | 1604c0fe0e5ce74538555c19a307ad38d0fca358 (diff) | |
download | tor-b04d719c1067dd1cf9b48295f1d0e7ed5adb7255.tar.gz tor-b04d719c1067dd1cf9b48295f1d0e7ed5adb7255.zip |
Integrate getdelim() and getline() support into Tor.
Diffstat (limited to 'src/lib/fs/files.h')
-rw-r--r-- | src/lib/fs/files.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/lib/fs/files.h b/src/lib/fs/files.h index 5a12eb8215..d219e3cf05 100644 --- a/src/lib/fs/files.h +++ b/src/lib/fs/files.h @@ -103,4 +103,38 @@ char *read_file_to_str_until_eof(int fd, size_t max_bytes_to_read, size_t *sz_out) ATTR_MALLOC; +#if !defined(HAVE_GETDELIM) || defined(TOR_UNIT_TESTS) +ssize_t compat_getdelim_(char **lineptr, size_t *n, int delim, FILE *stream); +#endif + +#ifdef HAVE_GETDELIM +/** + * Cross-platform wrapper for getdelim(): behaves as the POSIX-standard + * getdelim() function. + * + * Note that this function will use the libc memory allocator -- so any memory + * passed to this function must come from raw_malloc(), and must be freed by + * raw_free() -- don't use tor_malloc() and tor_free() with this. + */ +#define tor_getdelim(lineptr, n, delim, stream) \ + getdelim((lineptr), (n), (delim), (stream)) +#else +#define tor_getdelim(lineptr, n, delim, stream) \ + compat_getdelim_((lineptr), (n), (delim), (stream)) +#endif + +#ifdef HAVE_GETLINE +/** + * Cross-platform wrapper for getline(): behaves as the POSIX-standard + * getline() function. + * + * See tor_getdelim() for usage notes. + */ +#define tor_getline(lineptr, n, stream) \ + getline((lineptr), (n), (stream)) +#else +#define tor_getline(lineptr, n, stream) \ + tor_getdelim((lineptr), (n), '\n', (stream)) +#endif + #endif |