/* flist.h Copyright 1994 by Thomas Glen Smith */
/* APL2 V1.0.0 */
#if !defined(FLIST_INCL)
#define FLIST_INCL
typedef struct flist *Flist;
struct flist {
struct flist *fnext;
double fel[2];
int iel;
int swel; /* 2=comma, 1=fel, 0=iel valid */
};
#endif