1
0
mirror of https://github.com/git/git.git synced 2024-10-21 13:59:03 +02:00
git/sequencer.h

13 lines
261 B
C
Raw Normal View History

#ifndef SEQUENCER_H
#define SEQUENCER_H
#define SEQ_DIR "sequencer"
#define SEQ_HEAD_FILE "sequencer/head"
#define SEQ_TODO_FILE "sequencer/todo"
#define SEQ_OPTS_FILE "sequencer/opts"
/* Removes SEQ_DIR. */
extern void remove_sequencer_state(void);
#endif