Add test-chmtime: a utility to change mtime on files
[git/dscho.git] / interpolate.h
blob190a180b587aa565ae2ae71f9eb068ad75db168f
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.
14 struct interp {
15 char *name;
16 char *value;
19 extern void interp_set_entry(struct interp *table, int slot, const char *value);
20 extern void interp_clear_table(struct interp *table, int ninterps);
22 extern int interpolate(char *result, int reslen,
23 const char *orig,
24 const struct interp *interps, int ninterps);
26 #endif /* INTERPOLATE_H */