/* Copyright (C) 1993 by Thomas Glen Smith. All Rights Reserved. */ /* formdft.h APL2 V1.0.0 *********************************************** * Formdft.h contains declarations of variables common to several * * formdf_ modules. * ***********************************************************************/ #if !defined(FORMDFT_INCL) #define FORMDFT_INCL struct aplcb *chrcb, /* Character column indicator. */ *cntcb, /* Counter for interdimensional spacing. */ *colbl, /* Spaces between adjacent output columns. */ *colwi, /* Width of each output column. */ *frmcb, /* Intermediate holder of formatted items. */ *numcb, /* Numeric column indicator vector. */ *rowbl, /* Spaces between adjacent output rows. */ *rowhi; /* Height of each output row. */ int cols,rows; /* Columns and rows in frmcb. */ int dimcnt; /* Rank of rite. */ struct aplcb **icb, /* Pointer to array of input aplcb pointers. */ **ocb, /* Pointer to array of aplcb pointers for */ /* intermediate formatted elements. */ **rcb; /* Pointer to array of input aplcb pointers. */ /* Formdfu will use this to look at the previous */ /* row. */ #endif