You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
278 B
19 lines
278 B
18 years ago
|
/*
|
||
|
* 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 */
|