summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_file.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/nxt_file.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nxt_file.h b/src/nxt_file.h
index 07c7a22b..945717b3 100644
--- a/src/nxt_file.h
+++ b/src/nxt_file.h
@@ -186,6 +186,10 @@ NXT_EXPORT ssize_t nxt_fd_write(nxt_fd_t fd, u_char *buf, size_t size);
NXT_EXPORT ssize_t nxt_fd_read(nxt_fd_t fd, u_char *buf, size_t size);
NXT_EXPORT void nxt_fd_close(nxt_fd_t fd);
+NXT_EXPORT FILE *nxt_file_fopen(nxt_task_t *task, const char *pathname,
+ const char *mode);
+NXT_EXPORT void nxt_file_fclose(nxt_task_t *task, FILE *fp);
+
NXT_EXPORT nxt_int_t nxt_file_redirect(nxt_file_t *file, nxt_fd_t fd);
NXT_EXPORT nxt_int_t nxt_file_stderr(nxt_file_t *file);
NXT_EXPORT nxt_int_t nxt_stderr_start(void);