mirror of
https://github.com/git/git.git
synced 2024-11-11 12:19:40 +01:00
49ba83fb67
Signed-off-by: Jon Loeliger Signed-off-by: Junio C Hamano <junkio@cox.net>
19 lines
278 B
C
19 lines
278 B
C
/*
|
|
* Copyright 2006 Jon Loeliger
|
|
*/
|
|
|
|
#ifndef INTERPOLATE_H
|
|
#define INTERPOLATE_H
|
|
|
|
|
|
struct interp {
|
|
char *name;
|
|
char *value;
|
|
};
|
|
|
|
extern int interpolate(char *result, int reslen,
|
|
char *orig,
|
|
struct interp *interps, int ninterps);
|
|
|
|
#endif /* INTERPOLATE_H */
|