summaryrefslogtreecommitdiffstats
path: root/stream.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-01-21 20:38:52 -0800
committerKaz Kylheku <kaz@kylheku.com>2015-01-21 20:38:52 -0800
commitaa355befc89d94f3f43d3ae4124f7d048fb4e588 (patch)
treeecee6b6cde1f503ee165d0457d94a46256ee0ce5 /stream.h
parent11bd34ef3af16aae9bfb78a3bb46d8098cb3a15b (diff)
downloadtxr-aa355befc89d94f3f43d3ae4124f7d048fb4e588.tar.gz
txr-aa355befc89d94f3f43d3ae4124f7d048fb4e588.tar.bz2
txr-aa355befc89d94f3f43d3ae4124f7d048fb4e588.zip
* stream.c (get_string): New argument, close_after_p.
Close the stream unless close_after_p is specified and is nil, or when it is missing, an there is no compatibility or it's newer than version 102. * stream.h (get_string): Updated declartion. * txr.1: Documented default closing behavior of get-string and the new optional argument for overriding it.
Diffstat (limited to 'stream.h')
-rw-r--r--stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream.h b/stream.h
index 0f28c57c..3b01dee2 100644
--- a/stream.h
+++ b/stream.h
@@ -96,7 +96,7 @@ val put_strings(val strings, val stream);
val put_lines(val lines, val stream);
val flush_stream(val stream);
val seek_stream(val stream, val offset, val whence);
-val get_string(val stream, val nchars);
+val get_string(val stream, val nchars, val close_after_p);
val statf(val path);
val open_directory(val path);
val open_file(val path, val mode_str);