|
ASN1C C/C++ Common Runtime
ASN1C v7.8.x
|
#include "rtxsrc/rtxDList.h"Go to the source code of this file.
Classes | |
| struct | _OSRTStack |
Macros | |
| #define | rtxStackIsEmpty(stack) (OSBOOL)((stack).dlist.count == 0) |
Typedefs | |
| typedef struct _OSRTStack | OSRTStack |
Functions | |
| OSRTStack * | rtxStackCreate (struct OSCTXT *pctxt) |
| void | rtxStackInit (struct OSCTXT *pctxt, OSRTStack *pStack) |
| void * | rtxStackPop (OSRTStack *pStack) |
| int | rtxStackPush (OSRTStack *pStack, void *pData) |
| void * | rtxStackPeek (OSRTStack *pStack) |
Simple FIFO stack for storing void pointers to any type of data.