summaryrefslogtreecommitdiffstats
path: root/utf8.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-04-10 22:18:50 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-04-10 22:18:50 -0700
commit6a350fd788f3114629c9993aa4d1ec5c292182f5 (patch)
tree5b2319bf1f8d7144bfadcf9055264e809017e750 /utf8.h
parentcc9bd9efeb1a0b49819e086020c09656abeac768 (diff)
downloadtxr-6a350fd788f3114629c9993aa4d1ec5c292182f5.tar.gz
txr-6a350fd788f3114629c9993aa4d1ec5c292182f5.tar.bz2
txr-6a350fd788f3114629c9993aa4d1ec5c292182f5.zip
Functions open-fileno and fileno.
* stream.c (fd_k): New keyword variable. (stdio_get_prop): Handle the :fd property by returning the file descriptor. (open_fileno): New function. (stream_init): Initialize fd_k, and register fileno and open-fileno. * stream.h (open_fileno): Declared. * txr.1: Documented open-fileno and fileno. * utf8.c (w_fdopen): New function. * utf8.h (w_fdopen): Declared.
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/utf8.h b/utf8.h
index 9380780f..05502382 100644
--- a/utf8.h
+++ b/utf8.h
@@ -52,5 +52,6 @@ wint_t utf8_decode(utf8_decoder_t *,int (*get)(mem_t *ctx), mem_t *ctx);
FILE *w_fopen(const wchar_t *, const wchar_t *);
FILE *w_popen(const wchar_t *, const wchar_t *);
FILE *w_freopen(const wchar_t *, const wchar_t *, FILE *);
+FILE *w_fdopen(int, const wchar_t *);
int w_remove(const wchar_t *);
int w_rename(const wchar_t *, const wchar_t *);