Moved the flist_ndx_{push,pop}() routines from io.c into util.c.
[rsync/rsync.git] / rsync.h
diff --git a/rsync.h b/rsync.h
index 7eb9a80..c288a1f 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -834,6 +834,15 @@ struct stats {
 
 struct chmod_mode_struct;
 
+struct flist_ndx_item {
+       struct flist_ndx_item *next;
+       int ndx;
+};
+
+typedef struct {
+       struct flist_ndx_item *head, *tail;
+} flist_ndx_list;
+
 #define EMPTY_ITEM_LIST {NULL, 0, 0}
 
 typedef struct {