Code

gitweb: History: blob and tree are first, then commitdiff, etc
[git.git] / interpolate.h
1 /*
2  * Copyright 2006 Jon Loeliger
3  */
5 #ifndef INTERPOLATE_H
6 #define INTERPOLATE_H
8 /*
9  * Convert a NUL-terminated string in buffer orig,
10  * performing substitutions on %-named sub-strings from
11  * the interpretation table.
12  */
14 struct interp {
15         char *name;
16         char *value;
17 };
19 extern int interpolate(char *result, int reslen,
20                        const char *orig,
21                        const struct interp *interps, int ninterps);
23 #endif /* INTERPOLATE_H */