diff options
Diffstat (limited to 'libbb/wfopen.c')
-rw-r--r-- | libbb/wfopen.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libbb/wfopen.c b/libbb/wfopen.c index 1cb871ef5..deec79a28 100644 --- a/libbb/wfopen.c +++ b/libbb/wfopen.c | |||
@@ -38,3 +38,19 @@ FILE* FAST_FUNC xfopen_for_write(const char *path) | |||
38 | { | 38 | { |
39 | return xfopen(path, "w"); | 39 | return xfopen(path, "w"); |
40 | } | 40 | } |
41 | |||
42 | static FILE* xfdopen_helper(unsigned fd_and_rw_bit) | ||
43 | { | ||
44 | FILE* fp = fdopen(fd_and_rw_bit >> 1, fd_and_rw_bit & 1 ? "w" : "r"); | ||
45 | if (!fp) | ||
46 | bb_error_msg_and_die(bb_msg_memory_exhausted); | ||
47 | return fp; | ||
48 | } | ||
49 | FILE* FAST_FUNC xfdopen_for_read(int fd) | ||
50 | { | ||
51 | return xfdopen_helper(fd << 1); | ||
52 | } | ||
53 | FILE* FAST_FUNC xfdopen_for_write(int fd) | ||
54 | { | ||
55 | return xfdopen_helper((fd << 1) + 1); | ||
56 | } | ||