/* qelem.h  -- Header file used to store type of elements of queues */ 

#ifndef _QELEM_H
#define _QELEM_H
typedef char elemtype;
#endif

