submodule.h 409 字节
Newer Older
1 2 3
#ifndef SUBMODULE_H
#define SUBMODULE_H

4 5 6
struct diff_options;

void handle_ignore_submodules_arg(struct diff_options *diffopt, const char *);
7 8
void show_submodule_summary(FILE *f, const char *path,
		unsigned char one[20], unsigned char two[20],
9
		unsigned dirty_submodule,
10
		const char *del, const char *add, const char *reset);
11
unsigned is_submodule_modified(const char *path, int ignore_untracked);
12 13

#endif