Staging
v0.5.1
https://github.com/git/git
Revision 5a2282de13c4da13f979185e652c8a08e2481fd1 authored by Junio C Hamano on 08 January 2006, 22:22:19 UTC, committed by Junio C Hamano on 08 January 2006, 22:22:19 UTC
2 parent s e77f489 + 8fc11b5
Raw File
Tip revision: 5a2282de13c4da13f979185e652c8a08e2481fd1 authored by Junio C Hamano on 08 January 2006, 22:22:19 UTC
GIT 1.1.0
Tip revision: 5a2282d
epoch.h
#ifndef EPOCH_H
#define EPOCH_H


// return codes for emitter_func
#define STOP     0
#define CONTINUE 1
#define DO       2
typedef int (*emitter_func) (struct commit *); 

int sort_list_in_merge_order(struct commit_list *list, emitter_func emitter);

/* Low bits are used by rev-list */
#define UNINTERESTING   (1u<<10)
#define BOUNDARY        (1u<<11)
#define VISITED         (1u<<12)
#define DISCONTINUITY   (1u<<13)
#define LAST_EPOCH_FLAG (1u<<14)


#endif	/* EPOCH_H */
back to top