git/interpolate.h
Alex Riesen 4dafd7d244 Use const for interpolate arguments
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-09-25 22:11:26 -07:00

24 lines
433 B
C

/*
* 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 {
char *name;
char *value;
};
extern int interpolate(char *result, int reslen,
const char *orig,
const struct interp *interps, int ninterps);
#endif /* INTERPOLATE_H */