From 6ded1170acadac267f6b1f086d0c75e57b696580 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Thu, 11 Apr 2002 02:18:51 +0000 Subject: [PATCH] Doxygen --- rsync.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/rsync.h b/rsync.h index 2e92e2f4..4ea7e0ba 100644 --- a/rsync.h +++ b/rsync.h @@ -369,19 +369,19 @@ struct file_list { }; struct sum_buf { - OFF_T offset; /* offset in file of this chunk */ - int len; /* length of chunk of file */ - int i; /* index of this chunk */ - uint32 sum1; /* simple checksum */ - char sum2[SUM_LENGTH]; /* checksum */ + OFF_T offset; /**< offset in file of this chunk */ + int len; /**< length of chunk of file */ + int i; /**< index of this chunk */ + uint32 sum1; /**< simple checksum */ + char sum2[SUM_LENGTH]; /**< checksum */ }; struct sum_struct { - OFF_T flength; /* total file length */ - size_t count; /* how many chunks */ - size_t remainder; /* flength % block_length */ - size_t n; /* block_length */ - struct sum_buf *sums; /* points to info for each chunk */ + OFF_T flength; /**< total file length */ + size_t count; /**< how many chunks */ + size_t remainder; /**< flength % block_length */ + size_t n; /**< block_length */ + struct sum_buf *sums; /**< points to info for each chunk */ }; struct map_struct { -- 2.34.1