summaryrefslogtreecommitdiff
path: root/xdelta3/xdelta3.h
diff options
context:
space:
mode:
authorjosh.macdonald <jmacd@users.noreply.github.com>2010-02-15 22:02:51 +0000
committerjosh.macdonald <jmacd@users.noreply.github.com>2010-02-15 22:02:51 +0000
commit1f7cebdc141c0bae5c25201e35b4d8fd2a27bb16 (patch)
treed6978143cf9e48263dc0fcd184c9b2e8c1964711 /xdelta3/xdelta3.h
parentf241a281e80aaf1aa90fe1a0d9db206396cd6a79 (diff)
Misc whitespace changes.
Diffstat (limited to 'xdelta3/xdelta3.h')
-rw-r--r--xdelta3/xdelta3.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/xdelta3/xdelta3.h b/xdelta3/xdelta3.h
index f417dcf..c831ac1 100644
--- a/xdelta3/xdelta3.h
+++ b/xdelta3/xdelta3.h
@@ -752,10 +752,17 @@ struct _xd3_source
752 xoff_t getblkno; /* request block number: xd3 sets 752 xoff_t getblkno; /* request block number: xd3 sets
753 current getblk request */ 753 current getblk request */
754 754
755 xoff_t max_blkno; 755 /* See xd3_getblk() */
756 xoff_t frontier_blkno; 756 xoff_t max_blkno; /* Maximum block, if eof is known,
757 usize_t onlastblk; 757 * otherwise, equals frontier_blkno
758 int eof_known; 758 * (initially 0). */
759 xoff_t frontier_blkno; /* If eof is unknown, the next
760 * source position to be read.
761 * Otherwise, equal to
762 * max_blkno. */
763 usize_t onlastblk; /* Number of bytes on max_blkno */
764 int eof_known; /* Set to true when the first
765 * partial block is read. */
759}; 766};
760 767
761/* The primary xd3_stream object, used for encoding and decoding. You 768/* The primary xd3_stream object, used for encoding and decoding. You