Staging
v0.5.1
https://github.com/git/git
Revision 4c1611249432733818e724fe04a3e9b04848cdab authored by Junio C Hamano on 01 May 2007, 00:30:02 UTC, committed by Junio C Hamano on 01 May 2007, 00:30:02 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 07c785d
Raw File
Tip revision: 4c1611249432733818e724fe04a3e9b04848cdab authored by Junio C Hamano on 01 May 2007, 00:30:02 UTC
GIT v1.5.2-rc1
Tip revision: 4c16112
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 int interpolate(char *result, int reslen,
		       const char *orig,
		       const struct interp *interps, int ninterps);

#endif /* INTERPOLATE_H */
back to top