1/*
2 * Copyright 1993, 1995 Christopher Seiwald.
3 *
4 * This file is part of Jam - see jam.c for Copyright information.
5 */
6
7/*
8 * expand.h - expand a buffer, given variable values
9 *
10 * 11/04/02 (seiwald) - const-ing for string literals
11 */
12
13LIST *var_expand(
14	LIST		*l,
15	const char	*in,
16	const char	*end,
17	LOL 		*lol,
18	int 		cancopyin );
19