Staging
v0.5.1
https://github.com/git/git
Revision e636106c76e0273334940d899de1c928d08b29e8 authored by Junio C Hamano on 26 June 2008, 00:09:40 UTC, committed by Junio C Hamano on 26 June 2008, 00:13:48 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent df79b9f
Raw File
Tip revision: e636106c76e0273334940d899de1c928d08b29e8 authored by Junio C Hamano on 26 June 2008, 00:09:40 UTC
GIT 1.5.6.1
Tip revision: e636106
interpolate.h
/*
 * Copyright 2006 Jon Loeliger
 */

#ifndef INTERPOLATE_H
#define INTERPOLATE_H

/*
 * Convert a NUL-terminated string in buffer orig,
 * performing substitutions on %-named sub-strings from
 * the interpretation table.
 */

struct interp {
	const char *name;
	char *value;
};

extern void interp_set_entry(struct interp *table, int slot, const char *value);
extern void interp_clear_table(struct interp *table, int ninterps);

extern unsigned long interpolate(char *result, unsigned long reslen,
				 const char *orig,
				 const struct interp *interps, int ninterps);

#endif /* INTERPOLATE_H */
back to top