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.
 
 
 
 
 
 

18 lines
278 B

/*
* 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 */