Revision a12c6b0149e3dadd0701dac4fd0ba2463d251650 authored by Mark Lodato on 26 March 2012, 02:41:42 UTC, committed by Junio C Hamano on 26 March 2012, 19:06:48 UTC
All of the other options were included in the synopsis, so it makes
sense to include these as well.

Signed-off-by: Mark Lodato <lodatom@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 36384c9
Raw File
fast_export.h
#ifndef FAST_EXPORT_H_
#define FAST_EXPORT_H_

#include "line_buffer.h"
struct strbuf;

void fast_export_delete(uint32_t depth, uint32_t *path);
void fast_export_modify(uint32_t depth, uint32_t *path, uint32_t mode,
			uint32_t mark);
void fast_export_commit(uint32_t revision, const char *author,
			const struct strbuf *log, const char *uuid,
			const char *url, unsigned long timestamp);
void fast_export_blob(uint32_t mode, uint32_t mark, uint32_t len,
		      struct line_buffer *input);

#endif
back to top