/* Copyright (C) 1998 by Thomas Glen Smith. All Rights Reserved. */ /* qel.h - APL2 V1.0.1 ************************************************* * Describes the structure used to create stacks and queues. * ***********************************************************************/ #if !defined(QEL_INCL) #define QEL_INCL typedef struct el *El; struct el { /* stack entry */ El nel; }; #endif