Home
last modified time | relevance | path

Searched refs:stackTop (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/expat/examples/
H A Delement_declarations.c68 stackPushMalloc(Stack *stackTop, const XML_Content *model, unsigned level) { in stackPushMalloc() argument
75 newStackTop->prev = stackTop; in stackPushMalloc()
80 stackPopFree(Stack *stackTop) { in stackPopFree() argument
81 Stack *const newStackTop = stackTop->prev; in stackPopFree()
82 free(stackTop); in stackPopFree()
147 Stack *stackTop = stackPushMalloc(NULL, root, 1); in dumpContentModel() local
148 if (! stackTop) { in dumpContentModel()
152 while (stackTop) { in dumpContentModel()
153 const XML_Content *const model = stackTop->model; in dumpContentModel()
154 const unsigned level = stackTop->level; in dumpContentModel()
[all …]