2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00
Files
build/v2/engine/expand.h

21 lines
415 B
C

/*
* Copyright 1993, 1995 Christopher Seiwald.
*
* This file is part of Jam - see jam.c for Copyright information.
*/
/*
* expand.h - expand a buffer, given variable values
*/
#ifndef EXPAND_SW20111118_H
#define EXPAND_SW20111118_H
#include "lists.h"
#include "object.h"
LIST * var_expand( LIST * l, const char * in, const char *end, LOL * lol, OBJECT * cancopyin );
void var_expand_unit_test();
#endif