Staging
v0.5.1
Revision 9918285fb10d81af9021dae99c5f4de88ded497c authored by Junio C Hamano on 07 July 2010, 18:19:42 UTC, committed by Junio C Hamano on 07 July 2010, 18:19:42 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 2a16315
Raw File
submodule.h
#ifndef SUBMODULE_H
#define SUBMODULE_H

struct diff_options;

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

#endif
back to top