summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/fitz/stream.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/mupdf/fitz/stream.h b/include/mupdf/fitz/stream.h
index a79846ec..233e2b06 100644
--- a/include/mupdf/fitz/stream.h
+++ b/include/mupdf/fitz/stream.h
@@ -234,7 +234,14 @@ fz_stream *fz_keep_stream(fz_context *ctx, fz_stream *stm);
*/
fz_buffer *fz_read_best(fz_context *ctx, fz_stream *stm, int initial, int *truncated);
-void fz_read_line(fz_context *ctx, fz_stream *stm, char *buf, int max);
+/*
+ fz_read_line: Read a line from stream into the buffer until either a
+ terminating newline or EOF, which it replaces with a null byte ('\0').
+
+ Returns buf on success, and NULL when end of file occurs while no characters
+ have been read.
+*/
+char *fz_read_line(fz_context *ctx, fz_stream *stm, char *buf, int max);
/*
fz_available: Ask how many bytes are available immediately from