#include "parseInt.h"
Go to the source code of this file.
Classes | |
| struct | ParseStackFnStruct |
| DECLARATIONS ///. More... | |
| struct | ParseStackOpStruct |
Functions | |
| Parse_StackFn_t * | Parse_StackFnStart (int nDepth) |
| FUNCTION DEFINITIONS ///. | |
| int | Parse_StackFnIsEmpty (Parse_StackFn_t *p) |
| void | Parse_StackFnPush (Parse_StackFn_t *p, void *bFunc) |
| void * | Parse_StackFnPop (Parse_StackFn_t *p) |
| void | Parse_StackFnFree (Parse_StackFn_t *p) |
| Parse_StackOp_t * | Parse_StackOpStart (int nDepth) |
| int | Parse_StackOpIsEmpty (Parse_StackOp_t *p) |
| void | Parse_StackOpPush (Parse_StackOp_t *p, int Oper) |
| int | Parse_StackOpPop (Parse_StackOp_t *p) |
| void | Parse_StackOpFree (Parse_StackOp_t *p) |
| void Parse_StackFnFree | ( | Parse_StackFn_t * | p | ) |
Function*************************************************************
Synopsis [Deletes the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 136 of file parseStack.c.

| int Parse_StackFnIsEmpty | ( | Parse_StackFn_t * | p | ) |
Function*************************************************************
Synopsis [Checks whether the stack is empty.]
Description []
SideEffects []
SeeAlso []
Definition at line 78 of file parseStack.c.

| void * Parse_StackFnPop | ( | Parse_StackFn_t * | p | ) |
Function*************************************************************
Synopsis [Pops an entry out of the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 115 of file parseStack.c.

| void Parse_StackFnPush | ( | Parse_StackFn_t * | p, |
| void * | bFunc ) |
Function*************************************************************
Synopsis [Pushes an entry into the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 94 of file parseStack.c.

| Parse_StackFn_t * Parse_StackFnStart | ( | int | nDepth | ) |
FUNCTION DEFINITIONS ///.
GLOBAL VARIABLES ///.
Function*************************************************************
Synopsis [Starts the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 57 of file parseStack.c.


| void Parse_StackOpFree | ( | Parse_StackOp_t * | p | ) |
| int Parse_StackOpIsEmpty | ( | Parse_StackOp_t * | p | ) |
Function*************************************************************
Synopsis [Checks whether the stack is empty.]
Description []
SideEffects []
SeeAlso []
Definition at line 177 of file parseStack.c.

| int Parse_StackOpPop | ( | Parse_StackOp_t * | p | ) |
Function*************************************************************
Synopsis [Pops an entry out of the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 214 of file parseStack.c.

| void Parse_StackOpPush | ( | Parse_StackOp_t * | p, |
| int | Oper ) |
Function*************************************************************
Synopsis [Pushes an entry into the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 193 of file parseStack.c.

| Parse_StackOp_t * Parse_StackOpStart | ( | int | nDepth | ) |
Function*************************************************************
Synopsis [Starts the stack.]
Description []
SideEffects []
SeeAlso []
Definition at line 156 of file parseStack.c.

