src/util/pile.c File Referencesrc/util/pile.csimple pile #include "../../include/util.h"Include dependency graph for pile.c:Functions int util_pile_push (pile **p, int value)int util_pile_pop (pile **p)void util_pile_clear (pile **p)int util_pile_length (pile *p)void util_pile_view (pile *p)Detailed Descriptionsimple pile This file is part of Gem-graph. It implements a simple pile functions. Function Documentationutil_pile_clear()util_pile_clearpile.cpile.cutil_pile_clearvoid util_pile_clear (pile ** p)
Parameters
**p
Here is the caller graph for this function:util_pile_length()util_pile_lengthpile.cpile.cutil_pile_lengthint util_pile_length (pile * p)
Parameters
**p
Returnslength
Here is the caller graph for this function:util_pile_pop()util_pile_poppile.cpile.cutil_pile_popint util_pile_pop (pile ** p)
Parameters
**p
Returnsvalue
Here is the caller graph for this function:util_pile_push()util_pile_pushpile.cpile.cutil_pile_pushint util_pile_push (pile ** p, int value)
Parameters
**pvalue
Returnsvalue
Here is the caller graph for this function:util_pile_view()util_pile_viewpile.cpile.cutil_pile_viewvoid util_pile_view (pile * p)
Parameters
**p
Here is the call graph for this function:
Here is the caller graph for this function: