MCPcopy Create free account
hub / github.com/HumbleNet/HumbleNet / ILibCreateStack

Function ILibCreateStack

3rdparty/webrtc/Microstack/ILibParsers.c:2708–2711  ·  view source on GitHub ↗

! \fn ILibCreateStack(void **TheStack) \brief Creates an empty Stack \par This module uses a void* that is preinitialized to NULL, eg: void *stack = NULL; ILibCreateStack(&stack); \param TheStack A void* to use for the stack. Simply pass in a void* by reference */

Source from the content-addressed store, hash-verified

2706\param TheStack A void* to use for the stack. Simply pass in a void* by reference
2707*/
2708void ILibCreateStack(void **TheStack)
2709{
2710 *TheStack = NULL;
2711}
2712
2713/*! \fn ILibPushStack(void **TheStack, void *data)
2714\brief Push an item onto the stack

Callers 3

ILibWrapper_SdpToBlockFunction · 0.85
ILibProcessXMLNodeListFunction · 0.85
ILibReadInnerXMLFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected