You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
433 B
21 lines
433 B
20 years ago
|
#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);
|
||
|
|
||
|
#define UNINTERESTING (1u<<2)
|
||
|
#define BOUNDARY (1u<<3)
|
||
|
#define VISITED (1u<<4)
|
||
|
#define DISCONTINUITY (1u<<5)
|
||
|
#define DUPCHECK (1u<<6)
|
||
|
|
||
|
|
||
|
#endif /* EPOCH_H */
|