Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sequencer.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d4528f2928053827aedd0b737bf01985f1c4957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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