/*
 * cpilea.h - An area which display a cpile.
 */

/* ---------- Structure definition ---------- */
struct cpilea_data {
     struct cpile *clp;
};

/* ---------- Functions ---------- */
/*
 * cpilea_create(cpile, aop) --> struct area *
 * 
 * Create a new area which contains a cpile.  The area will be created
 * according to the stuff in aop.
 */
struct area *cpilea_create(struct cpile *, struct aop *);
