var-expand.h revision 3b94ff5951db4d4eddb7a80ed4e3f61207202635
#ifndef __VAR_EXPAND_H
#define __VAR_EXPAND_H
struct var_expand_table {
char key;
const char *value;
};
/* Expand % variables in src and append the string in dest.
table must end with key = 0. */
const struct var_expand_table *table);
#endif