summaryrefslogtreecommitdiff
path: root/fitz/stm_read.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-07-17 12:30:22 +0000
committerTor Andersson <tor@ghostscript.com>2010-07-17 12:30:22 +0000
commitf23227839ea5afeed361611dcaf01784b2f791e3 (patch)
tree30870ba1fc7e574ab2e14545caa9d9f03f97ef58 /fitz/stm_read.c
parent5de6910dd12025185e15fb483d5047c399212423 (diff)
downloadmupdf-f23227839ea5afeed361611dcaf01784b2f791e3.tar.xz
Minor edits of multi-line comments.
Diffstat (limited to 'fitz/stm_read.c')
-rw-r--r--fitz/stm_read.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/fitz/stm_read.c b/fitz/stm_read.c
index 3b09bf41..d4d27f66 100644
--- a/fitz/stm_read.c
+++ b/fitz/stm_read.c
@@ -271,9 +271,7 @@ fz_peekbytex(fz_stream *stm)
return buf->rp < buf->wp ? *buf->rp : EOF ;
}
-/*
- * Read a line terminated by LF or CR or CRLF.
- */
+/* Read a line terminated by LF or CR or CRLF. */
fz_error
fz_readline(fz_stream *stm, char *mem, int n)
@@ -334,10 +332,7 @@ fz_fillbuf(fz_stream *stm, fz_buffer *buf)
return 0;
}
-/*
- * Utility function to consume all the contents of an input stream into
- * a freshly allocated buffer.
- */
+/* Read the contents of an input stream into a new buffer. */
fz_buffer *
fz_readall(fz_stream *stm, int sizehint)